Skip to content

Bump actions/download-artifact from 1 to 4.1.7 in /.github/workflows #16

Bump actions/download-artifact from 1 to 4.1.7 in /.github/workflows

Bump actions/download-artifact from 1 to 4.1.7 in /.github/workflows #16

Workflow file for this run

name: build & test CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
node-version: [14.x, 15.x]
steps:
- name: Install gmplib (Linux)
run: sudo apt-get install libgmp-dev
if: matrix.os == 'ubuntu-latest'
- name: Install gmplib (macOS)
run: brew install gmp
if: matrix.os == 'macos-latest'
- uses: actions/checkout@v2
- 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