Skip to content

Commit

Permalink
run tests in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
guanzo committed Sep 6, 2023
1 parent 54588f2 commit a5fb138
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: CI/CD
on:
push:
branches:
- main
tags:
- '*'
pull_request:
branches:
- main
jobs:
cicd:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- uses: actions/setup-node@v2
with:
node-version: '18'

- name: Install dependencies
run: |
npm ci
- name: Run Tests
run: |
node --test tests/

0 comments on commit a5fb138

Please sign in to comment.