This repository has been archived by the owner on Apr 5, 2024. It is now read-only.
feat: use playwright for e2e tests #3610
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: Build | |
on: [pull_request, push] | |
concurrency: | |
cancel-in-progress: true | |
group: build-${{ github.ref }} | |
jobs: | |
build: | |
name: Build and export | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20" | |
cache: "yarn" | |
- name: Install dependencies | |
run: | | |
yarn --immutable | |
- name: Build and export | |
run: | | |
yarn build |