Merge pull request #767 from apocas/dependabot/npm_and_yarn/braces-3.0.3 #69
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: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build_nodejs: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [14.x, 16.x, 18.x, 19.x] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Provisioning | |
run: | | |
docker --version | |
node -v | |
docker pull ubuntu | |
- name: NPM install | |
run: npm install | |
- name: Nodejs Tests | |
run: npm test | |
build_bun: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: oven-sh/setup-bun@v1 | |
- name: Provisioning | |
run: | | |
docker --version | |
bun -v | |
docker pull ubuntu | |
- name: Bun install | |
run: bun install | |
- name: Bun Tests | |
run: bun run test |