aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorUri Shaked2020-01-30 23:25:12 +0200
committerUri Shaked2020-01-30 23:25:12 +0200
commit98214b546453b86c04a4c03db96b6fefd98e4b10 (patch)
treeb25b4a41a74edf4f7118de7633cf62542739be8a /.github/workflows
parenttest(instruction): fix incorrect opcode in tests (diff)
downloadavr8js-98214b546453b86c04a4c03db96b6fefd98e4b10.tar.gz
avr8js-98214b546453b86c04a4c03db96b6fefd98e4b10.tar.bz2
avr8js-98214b546453b86c04a4c03db96b6fefd98e4b10.zip
chore: github actions CI config
Diffstat (limited to '.github/workflows')
-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
If you find this content useful please consider a small donation via bitcoin: bitcoin:1mxKyQsHHugqRxPKgwaA7wUwJEGCNthn2?amount=0.001&message=Donation Scraping git contents via cgit is very resource intensive. The continued hosting of these git repositories is entirely financed by your bitcoin contributions. For donations of a least 1 mBTC you include your IP address in the message of your bitcoin donation. This will remove this message in the future for requests from your IP, which will significantly reduce token usage. In any case, any contributions to bitcoin address 1mxKyQsHHugqRxPKgwaA7wUwJEGCNthn2 are very welcome. Thanks in advance for you contribution to a self-sustaining ecosystem.