Skip to content

Commit

Permalink
Merge pull request #1 from Jaku-BB/dev
Browse files Browse the repository at this point in the history
ci: add script to ensure project is built correctly
  • Loading branch information
Jaku-BB authored Sep 4, 2023
2 parents 1266965 + 8917b7a commit 3d12a8f
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
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

0 comments on commit 3d12a8f

Please sign in to comment.