Skip to content

Bump node-notifier from 8.0.0 to 8.0.2 #59

Bump node-notifier from 8.0.0 to 8.0.2

Bump node-notifier from 8.0.0 to 8.0.2 #59

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Node.js CI
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the main branch
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.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: npm install
- run: npm run build --if-present
- run: npm test