chore(deps-dev): bump rollup from 4.21.3 to 4.28.0 #224
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: ci | |
on: | |
push: | |
paths-ignore: | |
- ".github/*_TEMPLATE/**" | |
- ".gitignore" | |
- ".prettierignore" | |
- ".vscode/**" | |
branches: | |
- develop | |
pull_request: | |
paths-ignore: | |
- ".github/*_TEMPLATE/**" | |
- ".gitignore" | |
- ".prettierignore" | |
- ".vscode/**" | |
jobs: | |
check-code-formatting: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/[email protected] | |
- name: Setup Node.js environment | |
uses: actions/[email protected] | |
with: | |
node-version: 20.14.0 | |
cache: npm | |
- run: npm ci --prefer-offline --no-audit --no-save | |
- run: npm run check-format | |
test: | |
needs: check-code-formatting | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/[email protected] | |
- name: Setup Node.js environment | |
uses: actions/[email protected] | |
with: | |
node-version: 20.14.0 | |
cache: npm | |
- run: npm ci --prefer-offline --no-audit --no-save | |
- name: Fetch API reference | |
run: npm run fetch-api-reference | |
- name: Build project | |
run: npm run build:silent | |
- name: Run tests | |
run: npm run test |