Skip to content

ci: add script to ensure project is built correctly #1

ci: add script to ensure project is built correctly

ci: add script to ensure project is built correctly #1

Workflow file for this run

name: Test
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js v20.5.0
uses: actions/setup-node@v3
with:
node-version: 20.5.0
- name: Install dependencies
run: |
npm install --global pnpm
pnpm install --frozen-lockfile
- name: Build
run: pnpm run build