Updated yarn.lock for correct fast-xml verison (#1543) #1051
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 Workspaces | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
jobs: | |
lint: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: use node 12.x | |
uses: actions/setup-node@v2-beta | |
with: | |
node-version: 12.x | |
- uses: actions/cache@v2 | |
with: | |
path: .yarn/cache | |
key: windows-latest-node12.x-yarn-${{ hashFiles('**/yarn.lock') }} | |
- name: yarn | |
run: yarn --immutable | |
- name: yarn lint | |
run: yarn lint |