aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUri Shaked2020-01-30 23:25:12 +0200
committerUri Shaked2020-01-30 23:25:12 +0200
commit98214b546453b86c04a4c03db96b6fefd98e4b10 (patch)
treeb25b4a41a74edf4f7118de7633cf62542739be8a
parenttest(instruction): fix incorrect opcode in tests (diff)
downloadavr8js-98214b546453b86c04a4c03db96b6fefd98e4b10.tar.gz
avr8js-98214b546453b86c04a4c03db96b6fefd98e4b10.tar.bz2
avr8js-98214b546453b86c04a4c03db96b6fefd98e4b10.zip
chore: github actions CI config
-rw-r--r--.github/workflows/ci.yml25
1 files changed, 25 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
new file mode 100644
index 0000000..cc1b29b
--- /dev/null
+++ b/.github/workflows/ci.yml
@@ -0,0 +1,25 @@
+name: Node CI
+
+on: [push]
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ node: [ '12', '10', '8' ]
+ name: Node ${{ matrix.node }} CI
+ steps:
+ - uses: actions/checkout@v1
+ - name: Setup node
+ uses: actions/setup-node@v1
+ with:
+ node-version: ${{ matrix.node }}
+ - name: npm install, build, lint, and test
+ run: |
+ npm ci
+ npm run build
+ npm run lint
+ npm test
+ env:
+ CI: true