Skip to content

Fix enum key generation for values like ENUM_123_VALUE_456 (#1260) #2175

Fix enum key generation for values like ENUM_123_VALUE_456 (#1260)

Fix enum key generation for values like ENUM_123_VALUE_456 (#1260) #2175

Workflow file for this run

name: Builds, tests & co
on:
- push
- pull_request
permissions: read-all
jobs:
build-and-test:
strategy:
fail-fast: false
matrix:
node-version: [24, 22, 20]
runs-on: ubuntu-latest
steps:
- name: Checkout tree
uses: actions/checkout@v4
- name: Set-up Node.js
uses: actions/setup-node@v4
with:
check-latest: true
node-version: ${{ matrix.node-version }}
- run: corepack enable
- run: yarn install --immutable
- run: yarn format:check
- run: yarn build
- run: yarn test