WIP - Rewriting tests to use vitest #2336
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
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
name: Build and bundle | |
jobs: | |
chore: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Print environment | |
run: | | |
node --version | |
npm --version | |
python --version | |
pip --version | |
- name: Install Node dependencies | |
run: npm ci | |
- name: Compile with TypeScript | |
run: npm run build | |
- name: Bundle with Rollup | |
run: npm run dist |