zipline/.github/workflows/build.yml

32 lines
726 B
YAML
Raw Normal View History

2022-07-13 04:32:52 +00:00
name: 'Build'
2021-06-23 11:20:20 -07:00
on:
push:
branches: [ trunk ]
pull_request:
branches: [ trunk ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '16.x'
- name: 'Restore dependency cache'
id: cache-restore
uses: actions/cache@v2
with:
path: node_modules
key: ${{ runner.os }}-node${{ matrix.node }}-${{ hashFiles('**/yarn.lock') }}
2021-09-24 20:41:26 -07:00
2021-06-23 11:20:20 -07:00
- name: Install dependencies
if: steps.cache-restore.outputs.cache-hit != 'true'
run: yarn install
2021-09-24 20:41:26 -07:00
2021-06-23 11:20:20 -07:00
- name: Build
2022-07-13 04:32:52 +00:00
run: yarn build
env:
ZIPLINE_DOCKER_BUILD: true