chore(deps): update dependency typescript to v5.8.2 #286
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: Check | |
on: | |
push: | |
branches-ignore: | |
- main | |
jobs: | |
check: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Restore | |
uses: ./.github/actions/restore | |
- name: Audit | |
continue-on-error: true | |
run: pnpm audit | |
- name: Format | |
run: pnpm format:check | |
- name: Lint | |
run: pnpm lint | |
- name: Typecheck | |
run: pnpm typecheck | |
- name: Test | |
run: pnpm test:coverage | |
- name: Build | |
run: pnpm build | |
- name: Environment variables | |
run: cp .dev.vars.template .dev.vars | |
- name: Migrate | |
run: | | |
pnpm wrangler d1 migrations apply \ | |
solid-pages-preview \ | |
--env preview \ | |
--local | |
- name: End-to-End | |
uses: ./.github/actions/e2e | |
- name: Codecov test results | |
uses: codecov/test-results-action@5c441a7bcc06f8706cde90192857d337c5dab8a6 # v1 | |
with: | |
files: ./junit.xml,./junit.e2e.xml | |
token: ${{ secrets.CODECOV_TOKEN }} | |
- name: Codecov coverage | |
uses: codecov/codecov-action@0565863a31f2c772f9f0395002a31e3f06189574 # v5 | |
with: | |
files: ./reports/coverage/cobertura-coverage.xml | |
token: ${{ secrets.CODECOV_TOKEN }} |