mirror of
https://github.com/yannbertrand/macos-defaults
synced 2024-12-17 06:53:10 +00:00
39 lines
826 B
YAML
39 lines
826 B
YAML
|
name: Test VuePress
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- master
|
||
|
pull_request:
|
||
|
branches:
|
||
|
- master
|
||
|
|
||
|
jobs:
|
||
|
test:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@master
|
||
|
|
||
|
- name: Install Node.js
|
||
|
uses: actions/setup-node@v1
|
||
|
with:
|
||
|
node-version: 12
|
||
|
|
||
|
- name: Get yarn cache
|
||
|
working-directory: build/vuepress
|
||
|
id: yarn-cache
|
||
|
run: echo "::set-output name=dir::$(yarn cache dir)"
|
||
|
- uses: actions/cache@v1
|
||
|
with:
|
||
|
path: ${{ steps.yarn-cache.outputs.dir }}
|
||
|
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
|
||
|
restore-keys: |
|
||
|
${{ runner.os }}-yarn-
|
||
|
|
||
|
- run: yarn install --frozen-lockfile
|
||
|
working-directory: build/vuepress
|
||
|
- run: yarn test
|
||
|
working-directory: build/vuepress
|