Skip to content

Commit

Permalink
First attempt at Github Actions integration
Browse files Browse the repository at this point in the history
  • Loading branch information
Caligatio authored Mar 11, 2024
1 parent 45d3ae4 commit 4daa59f
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Build and Test

on: [push]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 'latest'
- uses: browser-actions/setup-chrome@v1
- uses: browser-actions/setup-firefox@v1
- name: Run Karma Tests
run: |
npm install
npm run test
npm run build
npm run test_dist

0 comments on commit 4daa59f

Please sign in to comment.