2021-12-29 21:58:51 +00:00
|
|
|
name: ci
|
|
|
|
on:
|
|
|
|
push:
|
2022-05-05 00:35:44 +00:00
|
|
|
branches: [master]
|
2021-12-29 21:58:51 +00:00
|
|
|
pull_request:
|
2022-05-05 00:35:44 +00:00
|
|
|
branches: ['*']
|
2021-12-29 21:58:51 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
ci:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-06-02 05:56:35 +00:00
|
|
|
node-version: [16.x, 18.x]
|
2021-12-29 21:58:51 +00:00
|
|
|
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
|
|
|
|
|
|
|
|
steps:
|
2022-05-05 00:35:44 +00:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
|
|
uses: actions/setup-node@v2
|
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node-version }}
|
|
|
|
- run: yarn install --frozen-lockfile
|
|
|
|
- run: npm run lint
|
|
|
|
- run: npm run build
|
|
|
|
- run: npm test
|
2022-07-12 23:25:36 +00:00
|
|
|
|
|
|
|
deno:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: denoland/setup-deno@v1
|
|
|
|
with:
|
|
|
|
deno-version: v1.x
|
|
|
|
- run: deno test --allow-read deno_test
|
2022-07-13 12:24:08 +00:00
|
|
|
|
|
|
|
bun:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-node@v2
|
|
|
|
with:
|
|
|
|
node-version: 16.x
|
|
|
|
- run: curl -fsSL https://bun.sh/install | bash
|
|
|
|
- run: echo "${HOME}/.bun/bin" >> $GITHUB_PATH
|
|
|
|
- run: npm run test:bun
|