Skip to content

chore(ci): update pr tests #274

chore(ci): update pr tests

chore(ci): update pr tests #274

Workflow file for this run

name: Build types
on:
push:
branches:
- dev
paths:
- '.github/workflows/build-types.yml'
# We don't need to hunt for every possible case, these should cover almost all cases
- 'ui/package.json'
- 'ui/build/build.types.js'
- 'ui/build/build.javascript.js'
# Manually authored .d.ts files
- 'ui/types/**'
# JSON API files
- 'ui/src/**/*.json'
- '!ui/src/api-file-example.json'
pull_request:
types:
- opened
- synchronize
paths:
- '.github/workflows/build-types.yml'
# We don't need to hunt for every possible case, these should cover almost all cases
- 'ui/package.json'
- 'ui/build/build.types.js'
- 'ui/build/build.javascript.js'
# Manually authored .d.ts files
- 'ui/types/**'
# JSON API files
- 'ui/src/**/*.json'
- '!ui/src/api-file-example.json'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
check:
runs-on: ubuntu-latest
permissions:
contents: read # to fetch code (actions/checkout)
actions: write # to upload artifacts (actions/upload-artifact)
defaults:
run:
working-directory: ui
steps:
- uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v3
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- name: Install dependencies
run: pnpm i
- name: Ensure types are formatted correctly
run: pnpm format:types --write=false --check
- name: Build the types
run: pnpm build js types
- if: ${{ github.event_name == 'pull_request' }}
run: |
echo ${{ github.event.number }} > dist/.pr-number
- name: Upload the build artifact
uses: actions/upload-artifact@v4
with:
name: types-build
path: |
ui/dist/api
ui/dist/types
ui/dist/.pr-number
# The flow continues with ./comment-build-results.yml for PRs