Create npm-test.yml
This commit is contained in:
54
.github/workflows/npm-test.yml
vendored
Normal file
54
.github/workflows/npm-test.yml
vendored
Normal file
@@ -0,0 +1,54 @@
|
||||
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
|
||||
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
|
||||
|
||||
name: npm-test
|
||||
|
||||
on:
|
||||
workflow_run:
|
||||
workflows: ["Compress Json Schemas"]
|
||||
types:
|
||||
- completed
|
||||
- requested
|
||||
|
||||
jobs:
|
||||
test-ubuntu:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
- name: Setup Node.js
|
||||
uses: actions/setup-node@v2
|
||||
with:
|
||||
node-version: 14
|
||||
- name: Build
|
||||
run: npm ci
|
||||
- name: Test
|
||||
run: npm test
|
||||
|
||||
test-windows:
|
||||
runs-on: windows-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
- name: Setup Node.js
|
||||
uses: actions/setup-node@v2
|
||||
with:
|
||||
node-version: 14
|
||||
- name: Build
|
||||
run: npm ci
|
||||
- name: Test
|
||||
run: npm test
|
||||
|
||||
test-macos:
|
||||
runs-on: macos-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
- name: Setup Node.js
|
||||
uses: actions/setup-node@v2
|
||||
with:
|
||||
node-version: 14
|
||||
- name: Build
|
||||
run: npm ci
|
||||
- name: Test
|
||||
run: npm test
|
||||
Reference in New Issue
Block a user