chore(deps): update dependency @custom-elements-manifest/analyzer to ^0.10.2 #1634
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: Verify Windows | |
on: | |
pull_request: | |
push: | |
branches: | |
- 'renovate/*' | |
jobs: | |
verify-windows: | |
name: Verify windows | |
runs-on: windows-latest | |
steps: | |
- name: Set git to use LF | |
run: | | |
git config --global core.autocrlf false | |
git config --global core.eol lf | |
- uses: actions/checkout@v2 | |
- name: Setup Node 14.x | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 14.x | |
cache: 'yarn' | |
- name: Install dependencies | |
run: yarn --frozen-lockfile | |
- name: Build | |
run: yarn build | |
- run: npm config set scripts-prepend-node-path true | |
- name: Test | |
run: yarn test |