Skip to content

adds license link

adds license link #14

Workflow file for this run

name: Nodejs
on: [push]
jobs:
build:
runs-on: ubuntu-latest
name: Build and Test
timeout-minutes: 15
strategy:
matrix:
node-version: [20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Run lint
run: pnpm run lint
- name: Run test
run: pnpm run test