Add runFlags test and fix bugs #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
on: [push] | |
jobs: | |
test: | |
name: Test | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
node-version: [20.x] | |
deno-version: [1.40.x] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Use Deno Version ${{ matrix.deno-version }} | |
uses: denolib/setup-deno@master | |
with: | |
deno-version: ${{ matrix.deno-version }} | |
- name: npm install | |
run: npm ci | |
env: | |
CI: true | |
- name: build | |
run: npm run build | |
env: | |
CI: true | |
- name: vitest | |
run: npm run test | |
env: | |
CI: true | |
- name: deno lint | |
run: | | |
cd deno-bootstrap | |
deno lint |