Fix: URL params & error msg #39
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: Hovercards Type check / Lint / Build | |
on: | |
pull_request: | |
paths: | |
- 'web/packages/hovercards/**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20] | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm install | |
- name: Type check | |
working-directory: web/packages/hovercards | |
run: npm run type-check | |
- name: Lint | |
working-directory: web/packages/hovercards | |
run: npm run lint | |
- name: Build | |
working-directory: web/packages/hovercards | |
run: npm run build |