Skip to content

chore(deps-dev): bump @swc/core from 1.10.4 to 1.10.7 #257

chore(deps-dev): bump @swc/core from 1.10.4 to 1.10.7

chore(deps-dev): bump @swc/core from 1.10.4 to 1.10.7 #257

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
permissions:
actions: read
contents: write
pull-requests: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build with nx
run: npm run build
env:
NX_DISABLE_DB: true
merge:
runs-on: ubuntu-latest
needs: ['build']
if: github.actor == 'dependabot[bot]'
steps:
- uses: actions/checkout@v4
- 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.GITHUB_TOKEN}}