Skip to content

Create Letterboxd Plugin for Kunkun #94

Create Letterboxd Plugin for Kunkun

Create Letterboxd Plugin for Kunkun #94

Workflow file for this run

name: CI Build & Test
on:
push:
branches: ["main", "dev"]
pull_request:
branches: ["main"]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v4
with:
submodules: "true"
- uses: oven-sh/setup-bun@v1
with:
bun-version: 1.1.24
- uses: pnpm/action-setup@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- run: pnpm i
- name: Build Every Extension
env:
DISCORD_WEBHOOK_URL: ${{ secrets.DISCORD_WEBHOOK_URL }}
run: bun build-every-extension.ts
working-directory: ci