fix(deps): update shared components packages #814
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: PR verification and build | |
on: | |
push: | |
branches: [main] | |
paths: | |
- "spectral/**" | |
pull_request: | |
branches: [ main ] | |
paths: | |
- "spectral/**" | |
jobs: | |
rules-build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 16 | |
- working-directory: ./spectral | |
run: yarn | |
- working-directory: ./spectral | |
run: yarn build | |
- working-directory: ./spectral | |
run: yarn lint | |
- working-directory: ./spectral | |
run: yarn cli-integration-tests | |