Skip to content

build(deps): bump brace-expansion from 2.0.2 to 2.1.0 #690

build(deps): bump brace-expansion from 2.0.2 to 2.1.0

build(deps): bump brace-expansion from 2.0.2 to 2.1.0 #690

Workflow file for this run

name: 'ci: Code Standards & Testing'
on:
pull_request: {}
push:
branches:
- main
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
runs-on: ubuntu-latest
name: Continuous Integration Suite
permissions:
contents: read
pull-requests: write
steps:
- name: '⬇️ Checkout Code'
uses: actions/checkout@v4
- name: '💚 Use Node.js v20'
uses: actions/setup-node@v4
with:
node-version: 20
- name: '📦 Install Packages'
run: yarn --immutable --immutable-cache --check-cache
- name: '🎨 Code Formatting & Linting'
run: yarn analyze:ci
- name: '🟦 Typecheck'
run: yarn analyze:types
- name: '▲ Generate Prisma Client for Tests'
working-directory: tests
run: yarn prisma:generate
- name: '⚡️ Test'
id: test
run: yarn test
dependabot:
name: 'Dependabot (auto-merge)'
needs: [ci]
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
timeout-minutes: 5
if: ${{ github.actor == 'dependabot[bot]' && github.event_name == 'pull_request'}}
steps:
- name: Enable auto-merge for Dependabot PRs
run: gh pr merge --auto --squash "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{ secrets.GH_BOT_TOKEN }}