Skip to content

Commit

Permalink
chore; github workflow (#21)
Browse files Browse the repository at this point in the history
* chore: github workflow
  • Loading branch information
northern authored Oct 28, 2023
1 parent 1eb034b commit 9c19e8a
Show file tree
Hide file tree
Showing 5 changed files with 2,575 additions and 7,615 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: CI

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
test:
name: Test suite
runs-on: ubuntu-20.04

steps:
- name: Clone repository
uses: actions/checkout@v3

- name: Set up NodeJs
uses: actions/setup-node@v3
with:
node-version: '18'

- run: npm install
- run: npm run test
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
lib
tsconfig.json
coverage
node_modules
Loading

0 comments on commit 9c19e8a

Please sign in to comment.