Bump swiper from 8.0.7 to 10.1.0 #710
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Linting/Formatting | |
# Run on the opening of a pull request and subsequent commits to it. | |
on: pull_request | |
jobs: | |
lint-and-check-format: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v3 | |
- name: Set up Node ⬢ | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'npm' | |
- name: Install dependencies 🧱 | |
run: npm install | |
- name: Lint scripts 🏗 | |
run: npm run lint:js | |
- name: Lint styles 💅 | |
run: npm run lint:style | |
- name: Check Prettier ✨ | |
run: npm run lint:format |