Skip to content

Bump @types/node from 20.12.7 to 22.7.5 #150

Bump @types/node from 20.12.7 to 22.7.5

Bump @types/node from 20.12.7 to 22.7.5 #150

Workflow file for this run

name: Build and commit dist/
on:
pull_request:
branches:
- main
concurrency:
group: ${{ github.ref }}-build-dist
cancel-in-progress: true
jobs:
build-dist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set Node.js 20.x
uses: actions/[email protected]
with:
node-version: 20.x
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Rebuild the dist/ directory
run: |
yarn build
yarn package
- name: Add and commit
uses: EndBug/add-and-commit@v9 # You can change this to use a specific version.
with:
add: "./dist"
message: "rebuilding ./dist"