Skip to content

remove comments

remove comments #5

Workflow file for this run

name: CI Pipeline
on:
push:
branches:
- main
-ci_cd_pitchlake

Check failure on line 7 in .github/workflows/ci.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yaml

Invalid workflow file

You have an error in your yaml syntax on line 7
pull_request:
branches:
- main
jobs:
ci-checks:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Setup pnpm
run: npm install -g [email protected]
- name: Install dependencies with pnpm
run: pnpm install
- name: Lint code with ESLint
run: pnpm lint
env:
CI: true
- name: Build the project
run: pnpm build
env:
CI: true