Skip to content

Commit

Permalink
ci: main workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
floroz committed Aug 6, 2024
1 parent 33beb63 commit 8796bce
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: CI

on:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- uses: pnpm/action-setup@v4
with:
run_install: false

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

- name: Install dependencies
run: pnpm install

- name: Run tests
run: pnpm test

0 comments on commit 8796bce

Please sign in to comment.