build(deps-dev): bump eslint-config-next from 15.0.2 to 15.0.3 #5455
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: CI | |
on: push | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '16.x' | |
- name: Cache application node_modules | |
id: cache-npm-modules | |
uses: actions/cache@v2 | |
with: | |
path: node_modules | |
key: npm-${{ hashFiles('package-lock.json') }} | |
- name: Install dependencies | |
if: steps.cache-npm-modules.outputs.cache-hit != 'true' | |
run: npm install | |
- name: Format | |
run: npm run format | |
- name: Check type | |
run: npm run type-check | |
- name: Lint | |
run: npm run lint | |
- name: Test | |
run: npm run test | |
- name: Check data | |
run: npm run generate-data && test `git status -s src/data/* | wc -l` = 0 || (echo Generate and commit the latest data! && false) |