Skip to content

Bump yarn from 1.22.17 to 1.22.19 #349

Bump yarn from 1.22.17 to 1.22.19

Bump yarn from 1.22.17 to 1.22.19 #349

Workflow file for this run

name: Lint
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: '14.x'
- run: npx yarn install --frozen-lockfile
- run: echo "Linting"
- run: npx yarn run lint
- run: echo "Fixing"
- run: npx yarn run lint:fix
- run: echo "Done"