Updated all dependencies except eslint #442
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
# This workflow will perform static code checking and run all tests | |
name: Continuous Integration | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
name: Build and run tests | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v3 | |
with: | |
version: 9 | |
- name: Use Node.js 20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: "pnpm" | |
- name: Install dependencies | |
run: pnpm install | |
- name: ESLint | |
run: npm run lint | |
- name: Typecheck | |
run: npm run typecheck | |
- name: Prettier | |
run: npm run prettier | |
- name: Build presentation-rules-editor-react package | |
run: npm run build --prefix ./presentation-rules-editor-react | |
- name: Check unit test coverage | |
run: npm run test:cover --prefix ./presentation-rules-editor-react | |
- name: Run end-to-end tests with local configuration | |
run: npm run test --prefix ./app/e2e-tests | |
timeout-minutes: 5 | |
env: | |
CI: true | |
- name: Run end-to-end tests with web configuration | |
run: npm run test:web --prefix ./app/e2e-tests | |
timeout-minutes: 5 | |
env: | |
CI: true |