Skip to content

Commit

Permalink
ci: Adding test ci.
Browse files Browse the repository at this point in the history
  • Loading branch information
LuchoTurtle committed Oct 21, 2024
1 parent 5aeb0f0 commit 74091d9
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Runs tests

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 9
run_install: false

- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'

- name: Install dependencies
run: pnpm install

- name: Execute Unit tests
run: pnpm run test

0 comments on commit 74091d9

Please sign in to comment.