e Update npm package versions to 0.5.2 #67
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 run tests using node whenever a commit is pushed to develop or main | |
# For more information see: https://docs.github.com/en/actions/using-workflows/about-workflows | |
name: CI | |
on: | |
push: | |
# List all branches that shall be tested and are not protected by requiring pull requests to commit to. | |
branches: | |
- "develop" | |
- "main" | |
jobs: | |
dist: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: setup | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- uses: pnpm/action-setup@v3 | |
with: | |
version: 8 | |
- name: install | |
run: pnpm install --frozen-lockfile | |
- name: lint | |
run: pnpm lint | |
- name: test | |
run: pnpm test | |
- name: build | |
run: pnpm build | |
- name: E2E tests | |
run: pnpm test:e2e |