Skip to content

Merge branch 'frontend' #1

Merge branch 'frontend'

Merge branch 'frontend' #1

Workflow file for this run

name: Frontend CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: []

Check failure on line 17 in .github/workflows/ci_frontend.yml

View workflow run for this annotation

GitHub Actions / Frontend CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci_frontend.yml (Line: 17, Col: 23): Matrix vector 'node-version' does not contain any values .github/workflows/ci_frontend.yml (Line: 33, Col: 23): Matrix vector 'node-version' does not contain any values
steps:
- uses: actions/checkout@v4
- name: Set up frontend
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- name: Run lint
run: pnpm run lint
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: []
steps:
- uses: actions/checkout@v4
- name: Set up frontend
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- name: Run test
run: pnpm run test