cache/.github/workflows/workflow.yml

21 lines
302 B
YAML
Raw Normal View History

2019-10-30 19:48:49 +01:00
name: Test Cache Action
on:
pull_request:
push:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- run: npm ci
- name: Prettier Format Check
run: npm run format-check
- name: Build & Test
run: npm run test