diff --git a/.github/workflows/integrate.yml b/.github/workflows/integrate.yml new file mode 100644 index 0000000..736a1f6 --- /dev/null +++ b/.github/workflows/integrate.yml @@ -0,0 +1,32 @@ +name: Integrate + +permissions: + contents: read + +on: + push: + branches: + - main + pull_request: + branches: + - "*" + merge_group: + types: [checks_requested] + +concurrency: + group: integrate-${{ github.ref }} + cancel-in-progress: true + +jobs: + build: + name: Build + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v6 + - uses: actions/setup-node@v6 + with: + node-version: 24 + cache: yarn + - run: yarn install --immutable + - run: yarn build + - run: yarn test