Bump sass from 1.82.0 to 1.83.0 #2163
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, spellcheck and avo status | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
check-linting-spelling-avo: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: 'yarn' | |
- name: Install modules | |
run: yarn install --immutable | |
- name: Check linting | |
run: yarn lint | |
env: | |
CI: true | |
- name: Check spelling | |
run: yarn spellcheck | |
- name: Check avo status | |
run: yarn avo status |