Skip to content

Commit

Permalink
add test action
Browse files Browse the repository at this point in the history
  • Loading branch information
garbados committed Jan 7, 2025
1 parent c29ef3e commit 2023967
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Build and Test

on: [push]

jobs:
test:
runs-on: [ubuntu-latest]
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Install NodeJS
uses: dcodeIO/setup-node-nvm@master
with:
node-version: lts/*

- run: npm i

- name: Run tests
run: npm test

0 comments on commit 2023967

Please sign in to comment.