Skip to content

Commit

Permalink
gh
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenwf committed Dec 6, 2023
1 parent e331f8a commit 4ad69e8
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Build + Deploy

on:
push:
branches: [ 'main' ]
# paths:
# - ".github/workflows/deployment.yml"
# - "libis/**"
# - "manifests/**"
# - "scripts/**"
# - ".iiifrc.yml"
# - "bun.lockb"

jobs:
build:
runs-on: ubuntu-latest

name: Node ${{ matrix.node }} build
steps:
- uses: actions/checkout@v1

- uses: oven-sh/setup-bun@v1
with:
bun-version: latest

- uses: actions/cache@v3
with:
path: .iiif/cache
key: ${{ runner.os }}-${{ hashFiles('.iiifrc.yml') }}

- name: Install dependencies
run: bun install

- name: Build
run: bun build

0 comments on commit 4ad69e8

Please sign in to comment.