Skip to content

Commit

Permalink
Tweak CI config
Browse files Browse the repository at this point in the history
  • Loading branch information
1000ch committed Oct 20, 2021
1 parent ce4fb0c commit 4c70dce
Showing 1 changed file with 24 additions and 45 deletions.
69 changes: 24 additions & 45 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,50 +1,29 @@
name: test

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master

- push
- pull_request
jobs:
linux:
runs-on: ubuntu-latest

test:
name: Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [10.x, 12.x, 14.x]

node-version:
- 14
- 12
- 10
os:
- ubuntu-latest
- macos-latest
- windows-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: sudo apt-get install nasm
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test
env:
CI: true

macos:
runs-on: macos-latest

strategy:
matrix:
node-version: [10.x, 12.x, 14.x]

steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: brew install automake nasm
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test
env:
CI: true
- uses: actions/checkout@v2
- if: contains(matrix.os, 'ubuntu')
run: sudo apt-get install nasm
- if: contains(matrix.os, 'macos')
run: brew install automake nasm
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test

0 comments on commit 4c70dce

Please sign in to comment.