Fix lint errors #1638
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: Test | |
on: [push, pull_request] | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version-file: .nvmrc | |
- uses: actions/cache@v2 | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node- | |
- name: Install dependencies | |
run: npm install | |
# This has to come before linting because we need to run the Gatsby build | |
# at least once in order to generate the GraphQL TypeScript definitions. | |
# The TypeScript type check lint check will otherwise fail. | |
- name: Check build | |
run: npm run build | |
- name: Run lint checks | |
run: npm run lint | |
- name: Run tests | |
run: npm run test | |
- name: Check build-storybook | |
run: npm run build-storybook |