Skip to content

Commit

Permalink
add a github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
konnov committed Apr 15, 2024
1 parent aef21ae commit c644183
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
on:
# Every pull request
pull_request:
push:
branches:
- main

name: build

jobs:
unit-tests:
runs-on: ${{ matrix.operating-system }}
strategy:
fail-fast: false
matrix:
operating-system: [ubuntu-latest]
# macos is burning my free minutes way too fast
#operating-system: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20"
- name: install npm dependencies
run: cd ./solarkraft && npm ci
- name: compile solarkraft
run: cd ./solarkraft && npm run compile
- name: unit tests
run: cd ./solarkraft && npm run test

license:
runs-on: ubuntu-latest
strategy:
fail-fast: true
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20"
- name: install npm dependencies
run: cd ./solarkraft && npm ci
- name: check license
run: cd ./solarkraft && (npm run license | grep -v updated) || echo "use: npm run license"

0 comments on commit c644183

Please sign in to comment.