Skip to content

Updated dependencies and corrected tests #15

Updated dependencies and corrected tests

Updated dependencies and corrected tests #15

Workflow file for this run

name: Node.js Test & Build
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install pnpm
uses: pnpm/[email protected]
with:
version: 7
run_install: |
- args: [--frozen-lockfile]
- run: pnpm run lint
- run: pnpm run test
- run: pnpm run build