Skip to content

Commit

Permalink
add basic test and gh action
Browse files Browse the repository at this point in the history
  • Loading branch information
garredow committed Apr 13, 2024
1 parent 7d000b7 commit bf0c599
Show file tree
Hide file tree
Showing 7 changed files with 888 additions and 557 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Build

on: [push]

jobs:
build-test:
runs-on: ubuntu-latest

steps:
- name: Check out
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: 'npm'
- run: npm ci
- run: npm run build
- run: npm run test:ci
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ dist
build
*.local
.env
coverage

# Editor directories and files
.idea
Expand Down
Loading

0 comments on commit bf0c599

Please sign in to comment.