Skip to content

Commit

Permalink
try to fix workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
francoismassart committed Dec 9, 2024
1 parent 94c0f01 commit 6115a98
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 41 deletions.
41 changes: 0 additions & 41 deletions .github/workflows/build.yml

This file was deleted.

29 changes: 29 additions & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
on:
- push
- pull_request

jobs:
run-tests:
runs-on: ubuntu-latest

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

- uses: pnpm/action-setup@v4
name: Install pnpm

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

- name: Install dependencies
run: pnpm install

- name: Run the tests
run: |
node --version
pnpm --version
pnpm run test

0 comments on commit 6115a98

Please sign in to comment.