fix(deps): update podium packages #204
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: Run all tests on PR | |
permissions: | |
id-token: write | |
contents: read | |
on: | |
pull_request: | |
branches: | |
- main | |
- alpha | |
- beta | |
- next | |
jobs: | |
run-all-tests: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
node-version: [18, 20] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
run: npm install | |
- name: Lint | |
run: npm run lint | |
- name: Build | |
run: npm run build | |
- name: Run all tests | |
run: npm test | |
- name: Generate and check types | |
run: npm run types |