Skip to content

chore(deps-dev): bump undici from 6.23.0 to 6.24.1 (#29) #6

chore(deps-dev): bump undici from 6.23.0 to 6.24.1 (#29)

chore(deps-dev): bump undici from 6.23.0 to 6.24.1 (#29) #6

Workflow file for this run

name: Release Node
on:
workflow_dispatch:
push:
branches: [main]
permissions:
contents: write
issues: write
pull-requests: write
jobs:
release:
name: Semantic Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 0
persist-credentials: false
- name: Setup Node.js
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
with:
node-version: 25
cache: npm
- name: Install dependencies
run: npm ci
- name: Build
run: |
mkdir -p data
npm run db:seed
npm run exercises:import
npm run build
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npx semantic-release