Bump rollup from 3.29.4 to 3.29.5 #195
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: Tests | |
on: [push, pull_request] | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js 18 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: npm install | |
run: npm ci | |
- name: check code style | |
run: npm run lint | |
- name: run type checks | |
run: npm run type-check | |
- name: run tests | |
run: npm run test | |
- name: test build process | |
run: npm run build |