chore: Update CHANGELOG #225
This file contains hidden or 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: Continuous Integration | |
| on: [push, pull_request] | |
| jobs: | |
| test: | |
| name: Test | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-12, windows-latest] | |
| node-version: [12.x, 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: npm test | |
| run: npx jest --detectOpenHandles --forceExit --no-cache | |
| env: | |
| CI: true | |
| - name: deno test | |
| run: | | |
| cd deno | |
| deno test | |
| build: | |
| name: Build | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-12, windows-latest] | |
| node-version: [12.x, 20.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: npm install and build | |
| run: | | |
| npm ci | |
| npm run build | |
| env: | |
| CI: true |