Skip to content

fix syntax ... again #3

fix syntax ... again

fix syntax ... again #3

Workflow file for this run

name: 'PR Checks'
on:
pull_request:
branches:

Check failure on line 5 in .github/workflows/pr-checks.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pr-checks.yml

Invalid workflow file

You have an error in your yaml syntax on line 5
- main
types:
- opened
- synchronize
- reopened
- ready_for_review
workflow_dispatch:
jobs:
check-code:
name: Test App Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 16
cache: npm
- name: Install dependencies
run: npm install
- name: Svelte Check
run: npm run check
- name: Lint App
run: npm run format
- name: Build app
run: npm run build