chore(deps): bump rollup from 4.14.0 to 4.22.4 #85
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: Format and Lint | |
on: [push, pull_request] | |
jobs: | |
format: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Node.js | |
uses: actions/checkout@v4 | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20.11.1' | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm ci | |
- name: Svelte Check | |
run: npm run check | |
- name: Lint code | |
run: npm run lint |