fix(npm-scripts): ignore url options in css as we don't support loadi… #114
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: format | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
env: | |
CI: true | |
yarn-cache-name: yarn-cache-3 | |
yarn-cache-path: .yarn | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Use or update Yarn cache | |
uses: actions/cache@v2 | |
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 }} format:check |