Skip to content

Commit

Permalink
Chore: Add CI tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sandypockets committed Dec 14, 2023
1 parent be7c6b8 commit 44399b3
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Run Tests

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [16.x]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm cache clean --force
- run: npm ci
- run: npm run test

0 comments on commit 44399b3

Please sign in to comment.