Bump rollup from 4.18.1 to 4.22.4 #115
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: {} | |
jobs: | |
checks: | |
name: Pre-merge Checks | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Setup | |
run: npm ci | |
- name: Check formatting | |
run: npm run format:check | |
- name: Test build | |
run: npm run build |