Skip to content

fix: use 'npm run format' to format code instead of 'npm run prettier' #2

fix: use 'npm run format' to format code instead of 'npm run prettier'

fix: use 'npm run format' to format code instead of 'npm run prettier' #2

Workflow file for this run

name: Svelte Continuous Integration
on:
push:
pull_request:
jobs:
continuous-integration:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'npm'
- name: Clean install a project
run: npm ci
- name: Format Code
run: npm run format
- name: Check Code
run: npm run lint
- name: Test Code
run: npm run test