Skip to content

Commit

Permalink
Add GitHub Actions workflow for running tests (via Claude dog fooding…
Browse files Browse the repository at this point in the history
… run_script/run_command tools)
  • Loading branch information
g0t4 committed Dec 4, 2024
1 parent 3f36284 commit a40ae53
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Tests

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: 'npm'

- name: Install dependencies
run: npm ci

- name: Run tests
run: npm test

0 comments on commit a40ae53

Please sign in to comment.