Skip to content

Commit

Permalink
Check things in the CI (node16 and node18 only)
Browse files Browse the repository at this point in the history
  • Loading branch information
radare authored and trufae committed May 12, 2022
1 parent d2910f0 commit 85d9372
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: ci

on:
push:
pull_request:


jobs:
build:

runs-on: macos-latest

strategy:
matrix:
node-version: [ '16', '18' ]

steps:
- uses: actions/checkout@v2

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}

- run: npm install
- run: npm test
- run: npm run semi
- run: npm run dist

0 comments on commit 85d9372

Please sign in to comment.