Skip to content

Commit

Permalink
ops: run CI tests on GitHub Actions
Browse files Browse the repository at this point in the history
[#1]
  • Loading branch information
alxndr committed Nov 20, 2024
1 parent 8421b31 commit 270e84f
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: test suite
on: [push]
jobs:

test:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: setup node v20
uses: actions/setup-node@v4
with:
node-version: 20.18.1 # match .tool-versions file
- name: install
steps:
- run: npm ci
- name: tests
steps:
- run: npm run test

0 comments on commit 270e84f

Please sign in to comment.