name: Continuous Integration on: pull_request: push: branches: - main - 'releases/*' permissions: contents: read concurrency: group: ${{ github.workflow }}-${{ github.ref_name }} cancel-in-progress: true jobs: test-typescript: name: TypeScript Tests runs-on: ubuntu-latest steps: - name: Checkout id: checkout uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 with: persist-credentials: false # `mise.toml` pins both Node and aube; mise-action installs # whatever's listed there. Reads `package-lock.json` # directly — no separate `aube-lock.yaml` to maintain. # `.npmrc` pins `node-linker=hoisted` so the layout is # npm-flat (rollup's `--configPlugin` resolution # requires this). - uses: jdx/mise-action@dba19683ed58901619b14f395a24841710cb4925 # v4.1.0 with: cache: false - name: Install Dependencies id: aube-ci run: aube ci - name: Check Format id: aube-format-check run: aubr format:check - name: Lint id: aube-lint run: aubr lint # - name: Test # id: npm-ci-test # run: npm run ci-test