Skip to content

v1.2.1

v1.2.1 #49

Workflow file for this run

name: test
on: [ push, pull_request ]
permissions:
contents: read
jobs:
test:
name: "Test on Node.js ${{ matrix.node-version }}"
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 18, 20 ]
steps:
- name: checkout
uses: actions/checkout@v3
- uses: pnpm/[email protected]
- name: setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
cache: "pnpm"
node-version: ${{ matrix.node-version }}
- name: Install
run: pnpm install
- name: Test
run: pnpm test
e2e:
name: "E2E Tests"
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
- uses: pnpm/[email protected]
- name: setup Node.js
uses: actions/setup-node@v3
with:
cache: "pnpm"
node-version: 20
- name: Install
run: pnpm install
- name: Playwright Install
run: pnpm playwright install --with-deps
working-directory: e2e/
- name: Build All
run: pnpm run build
- name: Playwright Test
run: pnpm run e2e
working-directory: e2e/