Bump rollup from 4.43.0 to 4.44.1 (#28) #59
This file contains hidden or 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: 🧪 Continuous Integration | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
ci: | |
name: 🧪 CI - Test, Lint & Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: 'npm' | |
- name: 📦 Install dependencies | |
run: npm ci | |
- name: ✅ Run tests | |
run: npm test | |
- name: 🧹 Lint code | |
run: npm run lint | |
- name: 🔨 Build project | |
run: npm run build |