Skip to content

test: run on GitHub Actions #6

test: run on GitHub Actions

test: run on GitHub Actions #6

Workflow file for this run

name: test
on:
pull_request:
push:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
# https://nodejs.org/docs/latest-v9.x/api/deprecations.html#deprecations_dep0022_os_tmpdir
# https://github.com/nodejs/help/issues/2613
- '0.12'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test