Skip to content

Merge pull request #196 from Anrop/dependabot/npm_and_yarn/node-fetch… #57

Merge pull request #196 from Anrop/dependabot/npm_and_yarn/node-fetch…

Merge pull request #196 from Anrop/dependabot/npm_and_yarn/node-fetch… #57

Workflow file for this run

name: Node.js CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
name: Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version:
- 16.x
- 14.x
- 12.x
- 10.x
- 8.x
os:
- ubuntu-20.04
- windows-2019
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Get npm cache directory
id: npm-cache
run: |
echo "::set-output name=dir::$(npm config get cache)"
- name: Cache npm dependencies
uses: actions/cache@v2
with:
path: ${{ steps.npm-cache.outputs.dir }}
key: ${{ matrix.os }}-node-${{ matrix.node-version }}-${{ hashFiles('**/package.json') }}
restore-keys: |
${{ matrix.os }}-node-${{ matrix.node-version }}-
- name: Install npm dependencies
run: npm install
- name: Lint
run: npm run lint
- name: Build
run: npm run build