Skip to content

feat: 2.0.0 (#46)

feat: 2.0.0 (#46) #113

Workflow file for this run

name: Node.js CI
on:
push:
pull_request:
branches: [master,release]
jobs:
test:
runs-on: ubuntu-latest
name: test
strategy:
matrix:
node-version: [16.x, 18.x]
steps:
- name: checkout code repository
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install pnpm
run: npm i pnpm@7.23.0 -g
- name: Install
run: |
pnpm install --frozen-lockfile=false
- name: Test
run: |
pnpm test