Merge pull request #538 from jviide/changeset-fix #940
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v3 | |
with: | |
version: 8 | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
cache: pnpm | |
- name: Install dependencies | |
run: pnpm install | |
- name: Build | |
run: pnpm build | |
- name: Lint | |
run: pnpm lint | |
- name: Tests | |
run: pnpm test | |
- name: Test production build | |
run: pnpm test:minify | |
- name: Test react production build | |
run: pnpm test:prod | |
- name: Test React 16 | |
working-directory: packages/react | |
run: | | |
pnpm i react@16 react-dom@16 react-router-dom@5 | |
pnpm -w test:minify | |
pnpm -w test:prod |