Skip to content

Bump the dev-dependencies group across 1 directory with 3 updates (#312) #541

Bump the dev-dependencies group across 1 directory with 3 updates (#312)

Bump the dev-dependencies group across 1 directory with 3 updates (#312) #541

Workflow file for this run

name: Build
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
permissions:
contents: read
jobs:
build-tsc:
runs-on: ubuntu-latest
timeout-minutes: 10
if: github.event.pull_request.draft == false
name: Build for node 20
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
cache-dependency-path: 'package-lock.json'
- run: npm ci
- run: npm run build
build-action:
runs-on: ubuntu-latest
timeout-minutes: 10
if: github.event.pull_request.draft == false
name: Release Build for node 20
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
cache-dependency-path: 'package-lock.json'
- run: npm ci
- run: npm run release