Skip to content

chore(deps): update dependency eslint-plugin-import to v2.31.0 #25

chore(deps): update dependency eslint-plugin-import to v2.31.0

chore(deps): update dependency eslint-plugin-import to v2.31.0 #25

name: Build and test
on:
push:
pull_request:
branches: [master]
jobs:
build-and-test-osx:
runs-on: macos-latest
strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: scripts/ci/build-and-test.sh
env:
NODE_VERSION: ${{ matrix.node-version }}
build-and-test-ubuntu:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
steps:
- uses: actions/checkout@v2
- name: Set MSVS version
run: npm config set msvs_version 2017
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: scripts/ci/build-and-test.sh
env:
NODE_VERSION: ${{ matrix.node-version }}
build-and-test-windows:
runs-on: windows-latest
strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: bash scripts/ci/build-and-test.sh
shell: bash
env:
NODE_VERSION: ${{ matrix.node-version }}