Isolates the use of browser-system for setting up virtual compilation environments #80
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 run the distribution steps using node when a pull request is created or updated | |
# For more information see: https://docs.github.com/en/actions/using-workflows/about-workflows | |
name: PR Continuous Integration | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize] | |
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: 9 | |
- 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 |