diff options
| author | Uri Shaked | 2020-01-30 23:25:12 +0200 |
|---|---|---|
| committer | Uri Shaked | 2020-01-30 23:25:12 +0200 |
| commit | 98214b546453b86c04a4c03db96b6fefd98e4b10 (patch) | |
| tree | b25b4a41a74edf4f7118de7633cf62542739be8a /.github/workflows/ci.yml | |
| parent | test(instruction): fix incorrect opcode in tests (diff) | |
| download | avr8js-98214b546453b86c04a4c03db96b6fefd98e4b10.tar.gz avr8js-98214b546453b86c04a4c03db96b6fefd98e4b10.tar.bz2 avr8js-98214b546453b86c04a4c03db96b6fefd98e4b10.zip | |
chore: github actions CI config
Diffstat (limited to '.github/workflows/ci.yml')
| -rw-r--r-- | .github/workflows/ci.yml | 25 |
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 |
