chore(deps): update dependency @custom-elements-manifest/analyzer to ^0.10.2 #1630
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 Node | |
on: | |
pull_request: | |
push: | |
branches: | |
- 'renovate/*' | |
jobs: | |
verify-linux: | |
name: Verify linux | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [14.x, 16.x] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Node ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'yarn' | |
- name: Install dependencies | |
run: yarn --frozen-lockfile | |
- name: Build packages | |
run: yarn build | |
- name: Lint | |
run: yarn lint | |
- run: npm config set scripts-prepend-node-path true | |
- name: Test | |
run: yarn test |