cache/.github/workflows/workflow.yml

54 lines
997 B
YAML
Raw Normal View History

name: Tests
2019-11-13 04:48:02 +07:00
2019-10-31 01:48:49 +07:00
on:
pull_request:
2019-11-08 08:02:06 +07:00
branches:
- master
paths-ignore:
- '**.md'
2019-10-31 01:48:49 +07:00
push:
branches:
- master
paths-ignore:
2019-11-01 21:22:36 +07:00
- '**.md'
2019-10-31 01:48:49 +07:00
jobs:
test:
name: Test on ${{ matrix.os }}
2019-11-13 04:48:02 +07:00
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
2019-11-13 04:48:02 +07:00
runs-on: ${{ matrix.os }}
2019-11-13 04:48:02 +07:00
2019-10-31 01:48:49 +07:00
steps:
- uses: actions/checkout@v1
2019-11-13 04:48:02 +07:00
- uses: actions/setup-node@v1
with:
node-version: '12.x'
2019-10-31 01:48:49 +07:00
2019-11-13 05:48:19 +07: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-31 01:48:49 +07:00
- run: npm ci
- name: Prettier Format Check
run: npm run format-check
2019-11-13 04:48:02 +07:00
- name: ESLint Check
run: npm run lint
2019-10-31 01:48:49 +07:00
- name: Build & Test
run: npm run test