mirror of
https://github.com/zhigang1992/match-media.git
synced 2026-06-17 03:58:34 +08:00
46 lines
1.2 KiB
YAML
46 lines
1.2 KiB
YAML
# Useful resource: https://github.com/actions/starter-workflows
|
|
|
|
name: Check Universal Module
|
|
|
|
on:
|
|
# https://help.github.com/en/articles/workflow-syntax-for-github-actions#onpushpull_requestpaths
|
|
# More helpful: https://help.github.com/en/articles/events-that-trigger-workflows#webhook-events
|
|
push:
|
|
branches:
|
|
# If this isn't defined then all PR tests will be run twice
|
|
- master
|
|
paths:
|
|
- '*'
|
|
- '!*.md'
|
|
pull_request:
|
|
paths:
|
|
- '*'
|
|
- '!*.md'
|
|
|
|
jobs:
|
|
test:
|
|
name: Check Universal Module
|
|
strategy:
|
|
matrix:
|
|
# Run tests with all of these node versions/systems :]
|
|
# node-version: [8.x, 10.x, 12.x]
|
|
node-version: [10.x]
|
|
# os: [ubuntu-latest, windows-latest, macOS-latest]
|
|
os: [ubuntu-latest]
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
- name: Install Node Dependencies
|
|
run: |
|
|
npm install
|
|
env:
|
|
CI: true
|
|
- name: Check Package
|
|
run: ./scripts/module-scripts-check-package.sh
|
|
env:
|
|
CI: true
|