Skip to content
This repository has been archived by the owner on Jan 10, 2023. It is now read-only.

Commit

Permalink
Fixing windows test and security
Browse files Browse the repository at this point in the history
  • Loading branch information
ralic committed Oct 24, 2019
1 parent a7014d2 commit 5885958
Show file tree
Hide file tree
Showing 5 changed files with 783 additions and 737 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/nodejs.yml
@@ -0,0 +1,26 @@
name: Node CI

on: [push]

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [8.x, 10.x, 12.x]

steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm install
npm run build --if-present
npm test
env:
CI: true
1 change: 1 addition & 0 deletions .travis.yml
Expand Up @@ -3,6 +3,7 @@ language: node_js
sudo: false

node_js:
- 'node'
- '11'
- '10'
- '9'
Expand Down

0 comments on commit 5885958

Please sign in to comment.