Skip to content

ci: interscript-ts port is on main — clone main instead of the port b… #241

ci: interscript-ts port is on main — clone main instead of the port b…

ci: interscript-ts port is on main — clone main instead of the port b… #241

Workflow file for this run

name: build
on:
push:
branches: [main, astro-migration]
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: Use Node
uses: actions/setup-node@v7
with:
node-version: "22"
cache: npm
- name: Clone interscript-ts (file: dependency)

Check failure on line 19 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build.yml

Invalid workflow file

You have an error in your yaml syntax on line 19
run: |
git clone --depth=1 --branch main https://github.com/interscript/interscript-ts.git ../interscript-ts
cd ../interscript-ts && npm ci && npm run build
- name: Install dependencies
run: npm ci
- name: Type check
run: npm run check
- name: Build site
run: npm run build
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: site
path: dist