zipline/.github/workflows/build.yml
2021-09-24 20:39:43 -07:00

36 lines
No EOL
898 B
YAML

name: 'CI: Build'
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') }}
- name: Install dependencies
if: steps.cache-restore.outputs.cache-hit != 'true'
run: yarn install
- name: Build
run: yarn build
env:
CORE_SECRET=12345678
DATABASE_URL=postgres://postgres:postgres@postgres/postgres
UPLOADER_ROUTE=/u
UPLOADER_DIRECTORY=./uploads
URLS_ROUTE=/go