chore: release v2.2.0 #253
This file contains hidden or 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: E2e test | |
on: [push, pull_request] | |
jobs: | |
run-e2e-test: | |
strategy: | |
matrix: | |
version: [22, 23, 24] | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
node-version: ${{ matrix.version }} | |
- name: Instanll pnpm | |
run: make install | |
- name: install playwright | |
run: pnpm playwright install | |
- name: e2e test | |
run: make end-to-end-test |