1 changed files with 39 additions and 0 deletions
@ -0,0 +1,39 @@
|
||||
name: test |
||||
|
||||
on: |
||||
push: |
||||
branches: |
||||
- "**" |
||||
tags-ignore: |
||||
- v* |
||||
|
||||
jobs: |
||||
build: |
||||
runs-on: ubuntu-latest |
||||
steps: |
||||
- uses: actions/[email protected] |
||||
|
||||
- run: echo "::set-output name=version::$(cat .nvmrc)" |
||||
id: nvmrc |
||||
|
||||
- name: Setup node |
||||
uses: actions/[email protected] |
||||
with: |
||||
node-version: "${{ steps.nvmrc.outputs.version }}" |
||||
|
||||
- run: echo "::set-output name=dir::$(yarn cache dir)" |
||||
id: yarn-cache |
||||
|
||||
- name: Restore dependency cache |
||||
uses: actions/[email protected] |
||||
with: |
||||
path: "${{ steps.yarn-cache.outputs.dir }}" |
||||
key: ${{ runner.os }}-yarn-cache-${{ hashFiles('**/yarn.lock') }} |
||||
restore-keys: | |
||||
${{ runner.os }}-yarn-cache- |
||||
|
||||
- name: Install dependencies |
||||
run: yarn --frozen-lockfile |
||||
|
||||
- name: Test |
||||
run: yarn test |
Loading…
Reference in new issue