Skip to content

[CI.yaml] Fix CI.

[CI.yaml] Fix CI. #75

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
create-and-build:
name: Create and build
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: "latest"
with:

Check failure on line 21 in .github/workflows/CI.yaml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/CI.yaml (Line: 21, Col: 9): 'with' is already defined .github/workflows/CI.yaml (Line: 41, Col: 9): 'with' is already defined
node-version: "20"
- run: node bin/create-cubing-app my-cubing-project
- run: cd my-cubing-project && npm run build
app-template-build:
name: Create and build app from repo
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: "latest"
with:
node-version: "20"
- run: make setup
- run: make app-template-build