1
0
Fork 0

Attempt to add a CI

This commit is contained in:
Sam Therapy 2023-03-30 14:54:48 +02:00
parent 9fbe539714
commit 3328eaf2e5
Signed by: sam
GPG Key ID: 4D8B07C18F31ACBD
1 changed files with 21 additions and 0 deletions

21
.github/workflows/test.yml vendored Normal file
View File

@ -0,0 +1,21 @@
name: pnpm Example Workflow
on:
push:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [current]
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
- 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: Build
run: pnpm build