Skip to content

Bump webpack from 5.96.1 to 5.97.1 (#239) #80

Bump webpack from 5.96.1 to 5.97.1 (#239)

Bump webpack from 5.96.1 to 5.97.1 (#239) #80

Workflow file for this run

name: Build typescript
on:
push:
branches:
- master
- release
concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}
cancel-in-progress: true
permissions:
contents: write
jobs:
build:
name: Build typescript
runs-on: [ self-hosted, small ]
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version-file: .node-version
cache: 'npm'
cache-dependency-path: package-lock.json
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Commit changes
uses: EndBug/add-and-commit@v9
with:
fetch: false
default_author: github_actions
message: 'Build: Typescript'
add: 'dist/'