⬆️👷 Bump actions/checkout from 3df4ab11eba7bda6032a0b82a6bb43b11571feac to 1d96c772d19495a3b5c517cd2bc0cb401ea0529f #1129
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: Lint | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- uses: actions/cache@v3 | |
with: | |
path: node_modules | |
key: ${{ runner.os }}/node-16/${{ hashFiles('**/yarn.lock') }} | |
restore-keys: ${{ runner.os }}/node-16/ | |
- run: yarn | |
env: | |
PERCY_POSTINSTALL_BROWSER: true | |
- run: yarn lint |