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@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 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@e6a8b3978addb5a52f2b4cd9d91eafa7f0ab959d # v4.2.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