Lykhoyda/add snap #42
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: Playwright Tests | |
on: | |
pull_request: | |
push: | |
branches: main | |
jobs: | |
test: | |
timeout-minutes: 60 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Just | |
uses: extractions/setup-just@v2 | |
- name: install wasm-pack | |
uses: jetli/[email protected] | |
with: | |
version: latest | |
- name: build pkg | |
run: just build | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
- run: corepack enable | |
- name: Install dependencies | |
run: yarn install --immutable | |
- name: Install Playwright Browsers | |
working-directory: ./packages/e2e-tests/ | |
run: yarn playwright install --with-deps | |
- name: Run Playwright tests | |
run: yarn run test:e2e |