38 lines
No EOL
950 B
YAML
38 lines
No EOL
950 B
YAML
name: 'Build'
|
|
|
|
on:
|
|
push:
|
|
branches: [ trunk ]
|
|
pull_request:
|
|
branches: [ trunk ]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: '18.x'
|
|
|
|
- name: 'Restore dependency cache'
|
|
id: cache-restore
|
|
uses: actions/cache@v3
|
|
with:
|
|
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') }}-
|
|
|
|
|
|
- name: Install dependencies
|
|
if: steps.cache-restore.outputs.cache-hit != 'true'
|
|
run: yarn install
|
|
|
|
- name: Build
|
|
run: yarn build
|
|
env:
|
|
ZIPLINE_DOCKER_BUILD: true |