chore(deps): update dependency rollup to v3 #643
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: Build source code and test it | |
on: | |
push: | |
branches: | |
- renovate/** | |
pull_request: | |
branches: [ main ] | |
jobs: | |
web: | |
runs-on: ubuntu-latest | |
name: 'Build code and test' | |
steps: | |
- name: Check out | |
uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 7 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: 'pnpm' | |
- name: Install dependencies | |
id: install_code | |
run: pnpm install --frozen-lockfile | |
- name: Lint | |
id: lint_code | |
run: pnpm lint | |
- name: Build | |
id: build_code | |
run: pnpm build | |
- name: Build Ts | |
id: build_code_type | |
run: pnpm build:dts | |
- name: Test | |
id: test_code | |
run: pnpm test |