Bump expo-three in example #77
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |