Skip to content

Test workflow

Test workflow #32

name: Build and Commit Dist Files On Merge
on:
pull_request:
types: [synchronize, opened, reopened]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '22'
- name: Install dependencies
run: yarn install
- name: Build project
run: yarn build
- uses: stefanzweifel/git-auto-commit-action@v5