Skip to content

Merge commit '0f6674a8474e5af3128cac9502eecba4f97bb1a7' #1

Merge commit '0f6674a8474e5af3128cac9502eecba4f97bb1a7'

Merge commit '0f6674a8474e5af3128cac9502eecba4f97bb1a7' #1

Workflow file for this run

name: ci
on:
push:
branches:
- main
# pull_request
# branches:
# - main
jobs:
build:
runs_on: ubuntu-latest

Check failure on line 14 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / ci

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 14, Col: 5): Unexpected value 'runs_on' .github/workflows/ci.yml (Line: 14, Col: 5): Required property is missing: runs-on
strategy:
matrix:
node-version: [22]
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: package-lock.json
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build:release