build(deps): bump @adobe/css-tools from 4.0.1 to 4.3.1 #17
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 | |
# Lint runs the linter over the entire repository. | |
# This workflow is run on every pull request and push to main. | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
Lint: | |
name: Lint code | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v2 | |
- name: Cache Yarn files 💾 | |
uses: c-hive/gha-yarn-cache@v1 | |
- name: Install 🔨 | |
run: yarn install --immutable | |
- name: Run lint ✅ | |
run: yarn run lint |