Merge branch 'frontend' #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 GitHub Actions / Frontend CIInvalid workflow file
|
||
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 |