Merge pull request #1009 from veigaribo/master #39
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: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
node-version: [18, 20] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm ci | |
- name: Test | |
run: npm test | |
build-alpine: | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
node-version: [18, 20] | |
container: | |
image: node:${{ matrix.node-version }}-alpine | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
apk add make g++ python3 | |
- run: npm ci | |
- name: Test | |
run: | | |
npm test --unsafe-perm |