feat: integrate github actions #1
Workflow file for this run
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
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: [assigned, opened, synchronize, reopened, labeled] | |
name: ci | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [18, 20] | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node }} | |
- run: npm install -g npm@7 | |
- run: node --version | |
- run: npm ci --engine-strict | |
- run: npm test | |
windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 20 | |
- run: npm install -g npm@7 | |
- run: npm install | |
- run: npm test | |
esm: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [20] | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node }} | |
- run: npm install -g npm@7 | |
- run: node --version | |
- run: npm install --engine-strict | |
- run: npm run test:esm | |
deno: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 20 | |
- run: npm install -g npm@7 | |
- run: npm install | |
- run: npm run compile | |
- uses: denoland/setup-deno@v1 | |
with: | |
deno-version: v1.x | |
- run: | | |
deno --version | |
deno test --allow-read test/deno/* | |
coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 20 | |
- run: npm install -g npm@7 | |
- run: npm install | |
- run: npm test | |
- run: npm run coverage |