Merge pull request #1232 from bryceosterhaus/yui3205 #1723
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
# Based on: https://github.com/actions/starter-workflows/blob/master/ci/node.js.yml | |
name: lint | |
on: | |
push: | |
branches: [master] | |
paths-ignore: | |
- 'guidelines/css/**' | |
- 'guidelines/dxp/**' | |
- 'guidelines/general/**' | |
pull_request: | |
branches: [master] | |
paths-ignore: | |
- 'guidelines/css/**' | |
- 'guidelines/dxp/**' | |
- 'guidelines/general/**' | |
env: | |
CI: true | |
yarn-cache-name: yarn-cache-3 | |
yarn-cache-path: .yarn | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.x] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Use or update Yarn cache | |
uses: actions/cache@v4 | |
with: | |
path: ${{ env.yarn-cache-path }} | |
key: ${{ runner.os }}-${{ env.yarn-cache-name }}-${{ hashFiles('**/yarn.lock') }} | |
- run: yarn --cache-folder=${{ env.yarn-cache-path }} --frozen-lockfile | |
- run: yarn --cache-folder=${{ env.yarn-cache-path }} lint |