1
0
Fork 0
mirror of https://github.com/actions/cache.git synced 2024-09-20 01:46:43 +00:00
cache/.github/workflows/workflow.yml

55 lines
1,020 B
YAML
Raw Normal View History

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