Skip to content

test preventing race with token exchange timing #171

test preventing race with token exchange timing

test preventing race with token exchange timing #171

Workflow file for this run

name: Bun build
on:
push:
branches: ["**"]
pull_request:
branches: ["**"]
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
bun-version: [latest]
steps:
- uses: actions/checkout@v4
- name: Setup Bun ${{ matrix.bun-version }}
uses: oven-sh/setup-bun@v2
with:
bun-version: ${{ matrix.bun-version }}
- run: bun install --frozen-lockfile
- run: bun run build --if-present
- run: bun run lint