cache/.github/workflows/workflow.yml

55 lines
1,020 B
YAML
Raw Normal View History

name: Tests
2019-11-12 22:48:02 +01:00
2019-10-30 19:48:49 +01:00
on:
pull_request:
2019-11-08 02:02:06 +01:00
branches:
- master
paths-ignore:
- '**.md'
2019-10-30 19:48:49 +01:00
push:
branches:
- master
paths-ignore:
2019-11-01 15:22:36 +01:00
- '**.md'
2019-10-30 19:48:49 +01:00
jobs:
test:
name: Test on ${{ matrix.os }}
2019-11-12 22:48:02 +01:00
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
fail-fast: false
2019-11-12 22:48:02 +01:00
runs-on: ${{ matrix.os }}
2019-11-12 22:48:02 +01:00
2019-10-30 19:48:49 +01:00
steps:
- uses: actions/checkout@v1
2019-11-12 22:48:02 +01:00
- uses: actions/setup-node@v1
with:
node-version: '12.x'
2019-10-30 19:48:49 +01:00
2019-11-12 23:48:19 +01:00
- name: Get npm cache directory
id: npm-cache
run: |
echo "::set-output name=dir::$(npm config get cache)"
- uses: actions/cache@v1
with:
path: ${{ steps.npm-cache.outputs.dir }}
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
2019-10-30 19:48:49 +01:00
- run: npm ci
- name: Prettier Format Check
run: npm run format-check
2019-11-12 22:48:02 +01:00
- name: ESLint Check
run: npm run lint
2019-10-30 19:48:49 +01:00
- name: Build & Test
run: npm run test