Skip to content

chore: update tests and add action #16

chore: update tests and add action

chore: update tests and add action #16

Workflow file for this run

name: Test
on:
push:
branches:
- main
- develop
pull_request:
types: [opened, synchronize]
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install pnpm
uses: pnpm/[email protected]
- name: Install dependencies
run: pnpm install
- name: Build
run: pnpm build
- name: Run test
run: pnpm -r test:run