build(deps-dev): bump the svelte group across 1 directory with 15 updates #2478
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
lint_build: | |
name: 'Lint and Build' | |
strategy: | |
fail-fast: false | |
matrix: | |
framework: [react, vue, svelte, solid, web] | |
defaults: | |
run: | |
working-directory: ${{ matrix.framework }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '18' | |
cache: 'npm' | |
cache-dependency-path: ${{ matrix.framework }}/package-lock.json | |
- name: Install dependencies | |
run: npm i | |
- name: Run ESLint | |
run: npm run lint | |
- name: Run Prettier | |
run: npm run format | |
- name: Build project | |
run: npm run build |