Bump rollup from 4.18.0 to 4.22.4 in /tests/vite-app #276
Workflow file for this run
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: test | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "16" | |
- name: install | |
run: | | |
npm install -g npm@9 | |
npm install | |
- name: test | |
run: | | |
npm run prettier:check | |
npm run lint:check | |
npm run test:unit | |
npm run pack-for-tests | |
npm run test:install | |
npm run test:import | |
npm run test:browser | |
env: | |
CI: "true" |