⬆️👷 Update actions/checkout requirement to 85e6279cec87321a52edac9c87bce653a07cf6c2 #1349
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@85e6279cec87321a52edac9c87bce653a07cf6c2 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- uses: actions/cache@v3 | |
with: | |
path: node_modules | |
key: ${{ runner.os }}/node-18/${{ hashFiles('**/yarn.lock') }} | |
restore-keys: ${{ runner.os }}/node-18/ | |
- run: yarn | |
env: | |
PERCY_POSTINSTALL_BROWSER: true | |
- run: yarn lint |