2023-04-04 13:39:10 +00:00
|
|
|
name: autofix.ci # needed to securely identify the workflow
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
paths-ignore:
|
|
|
|
- "docs/**"
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
code:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2023-10-18 09:06:36 +00:00
|
|
|
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
2023-04-04 13:39:10 +00:00
|
|
|
- run: corepack enable
|
2023-10-23 13:40:37 +00:00
|
|
|
- uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7 # v3.8.2
|
2023-04-04 13:39:10 +00:00
|
|
|
with:
|
2023-09-11 22:46:22 +00:00
|
|
|
node-version: 20
|
2023-04-04 13:39:10 +00:00
|
|
|
cache: "pnpm"
|
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: pnpm install
|
|
|
|
|
2023-04-06 12:15:28 +00:00
|
|
|
- name: Build (stub)
|
|
|
|
run: pnpm build:stub
|
|
|
|
|
2023-04-06 12:55:12 +00:00
|
|
|
- name: Lint (code)
|
|
|
|
run: pnpm lint:fix
|
|
|
|
|
2023-04-04 13:39:10 +00:00
|
|
|
- name: Test (unit)
|
|
|
|
run: pnpm test:unit -u
|
2023-04-04 14:13:28 +00:00
|
|
|
|
2023-06-11 20:11:10 +00:00
|
|
|
- name: Run build
|
|
|
|
run: pnpm build
|
|
|
|
|
2023-10-18 09:06:15 +00:00
|
|
|
- name: Assert bundle size (renovate)
|
|
|
|
if: ${{ contains(github.head_ref, 'renovate') }}
|
|
|
|
run: pnpm vitest run bundle
|
|
|
|
|
|
|
|
- name: Update bundle size (renovate)
|
|
|
|
if: failure()
|
|
|
|
run: |
|
|
|
|
pnpm vitest run bundle -u
|
|
|
|
pnpm dedupe
|
|
|
|
|
2023-04-04 14:13:28 +00:00
|
|
|
- name: Update bundle size
|
2023-10-18 09:06:15 +00:00
|
|
|
if: ${{ !contains(github.head_ref, 'renovate') }}
|
2023-04-04 14:13:28 +00:00
|
|
|
run: pnpm vitest run bundle -u
|
|
|
|
|
2023-10-09 14:05:25 +00:00
|
|
|
- uses: autofix-ci/action@d3e591514b99d0fca6779455ff8338516663f7cc
|