chore(deps): update dependency @babel/plugin-transform-react-jsx-source to v7.25.7 #6080
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Integration | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
types: [opened, synchronize] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
TURBO_TEAM: ${{ vars.TURBO_TEAM }} | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
Lint: | |
runs-on: ubuntu-latest | |
timeout-minutes: 7 | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 2 | |
- name: Set up pnpm | |
uses: pnpm/[email protected] | |
- name: Set up Node | |
uses: actions/[email protected] | |
with: | |
node-version-file: .nvmrc | |
cache: pnpm | |
- name: Set up Bun | |
uses: oven-sh/[email protected] | |
with: | |
bun-version: 1.1.29 | |
- name: Install Dependencies | |
run: pnpm i | |
- name: Biome | |
run: bun lint:biome | |
- name: ESLint (Build Original Plugins) | |
run: bun lint:eslint:build | |
- name: ESLint | |
run: bun lint:eslint | |
- name: Type Check | |
run: bun lint:types | |
Test: | |
name: Build & Test | |
runs-on: ubuntu-latest | |
timeout-minutes: 7 | |
env: | |
NEXT_PUBLIC_REMOTE_ORIGIN: ${{ secrets.NEXT_PUBLIC_REMOTE_ORIGIN }} | |
services: | |
postgres: | |
image: postgres:17.0-alpine3.20 | |
env: | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: your_password | |
POSTGRES_DB: testdb | |
ports: | |
- 5432:5432 | |
options: >- | |
--health-cmd pg_isready --health-interval 1s --health-timeout 0.5s --health-retries 30 | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 2 | |
- name: Set up pnpm | |
uses: pnpm/[email protected] | |
- name: Set up Node | |
uses: actions/[email protected] | |
with: | |
node-version-file: .nvmrc | |
cache: pnpm | |
- name: Set up Bun | |
uses: oven-sh/[email protected] | |
with: | |
bun-version: 1.1.29 | |
- name: Install Dependencies | |
run: pnpm i | |
- name: Set up Git | |
run: | | |
git config --global init.defaultBranch main | |
git config --global user.email "[email protected]" | |
git config --global user.name "Your Name" | |
- name: Build | |
run: bun run build | |
- name: Test | |
run: bun run test |