2021-07-17 14:21:58 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
#branches:
|
|
|
|
# master
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
env:
|
|
|
|
NODE_VERSION: 16
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
setup:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
name: Setup
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-node@v2
|
|
|
|
id: node-setup
|
|
|
|
with:
|
|
|
|
node-version: ${{ env.NODE_VERSION }}
|
|
|
|
- uses: actions/cache@v2
|
|
|
|
id: cache-restore
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
.yarn
|
|
|
|
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}-${{ env.NODE_VERSION }}
|
|
|
|
- name: Install dependencies
|
|
|
|
if: steps.cache-restore.outputs.cache-hit != 'true'
|
2021-07-17 14:23:22 +00:00
|
|
|
run: yarn
|
2021-07-17 14:21:58 +00:00
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
name: Build
|
|
|
|
needs: setup
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-node@v2
|
|
|
|
id: node-setup
|
|
|
|
with:
|
|
|
|
node-version: ${{ env.NODE_VERSION }}
|
2021-07-17 14:26:49 +00:00
|
|
|
- uses: actions/cache@v2
|
|
|
|
id: cache-restore
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
.yarn
|
|
|
|
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}-${{ env.NODE_VERSION }}
|
2021-07-17 14:21:58 +00:00
|
|
|
- run: yarn build
|
|
|
|
|