🌲: Annotate pure functions with @__NO_SIDE_EFFECTS__
to enable better tree-shaking.
#87
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: Browser compatibility tests | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
cypress-run: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
run_install: false | |
- name: Cypress run | |
uses: cypress-io/github-action@v6 | |
with: | |
install-command: pnpm i --frozen-lockfile | |
build: pnpm build | |
command: pnpm cypress run |