Skip to content

Commit

Permalink
Add basic CI
Browse files Browse the repository at this point in the history
  • Loading branch information
remileduc committed Nov 9, 2023
1 parent dfcfbd1 commit af02a73
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: ⚙️ CI

on: push

jobs:
call-install:
uses: ./.github/workflows/actions/install.yaml@${{github.ref_name}}

call-build-lint:
needs: call-install
uses: ./.github/workflows/actions/build-lint.yaml@${{github.ref_name}}

call-tests:
needs: call-install
uses: ./.github/workflows/actions/tests.yaml@${{github.ref_name}}

call-docs:
needs: call-install
uses: ./.github/workflows/actions/docs.yaml@${{github.ref_name}}
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# config
.github/
.clang-format
.editorconfig
.eslintrc.json
Expand Down

0 comments on commit af02a73

Please sign in to comment.