chore(deps): update dependency @types/react to v18.3.10 (#837) #1603
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 | |
container: | |
image: node:lts | |
timeout-minutes: 15 | |
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: Install Dependencies | |
run: pnpm i | |
- name: Build | |
run: pnpm build | |
- name: Biome | |
run: pnpm lint:biome | |
- name: ESLint | |
run: pnpm lint:eslint | |
- name: Type Check | |
run: pnpm tsc | |
Test: | |
name: Build & Test | |
runs-on: ubuntu-latest | |
container: | |
image: node:lts | |
timeout-minutes: 15 | |
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: Install Dependencies | |
run: pnpm i | |
- name: Build | |
run: pnpm build | |
- name: Test | |
run: pnpm test |