zipline/.github/workflows/build.yml

38 lines
950 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:
2022-10-28 21:01:02 -07:00
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
2021-06-23 11:20:20 -07:00
with:
2022-10-29 10:53:21 -07:00
node-version: '18.x'
2022-10-28 21:01:02 -07:00
2021-06-23 11:20:20 -07:00
- name: 'Restore dependency cache'
id: cache-restore
2022-10-28 21:01:49 -07:00
uses: actions/cache@v3
2021-06-23 11:20:20 -07:00
with:
2022-10-27 21:26:54 -07:00
path: |
node_modules
${{ github.workspace }}/.next/cache
key: ${{ runner.os }}-node${{ matrix.node }}-${{ hashFiles('**/yarn.lock') }}-${{ hashFiles('**.[jt]s', '**.[jt]sx') }}
restore-keys: |
${{ 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