Skip to content

Commit

Permalink
github ci test
Browse files Browse the repository at this point in the history
  • Loading branch information
mmalmi committed May 6, 2024
1 parent efe6b5b commit 0cf0ce8
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Run Tests

on:
push:
branches:
- main # Or the branch name you want to trigger this action on

jobs:
test:
name: Run npm Tests
runs-on: ubuntu-latest

steps:
- name: Check out Code
uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '16'

- name: Install Dependencies
run: npm ci

- name: Run Tests
run: npm run test -- --run

0 comments on commit 0cf0ce8

Please sign in to comment.