Skip to content

Build after Dependabot #318

Build after Dependabot

Build after Dependabot #318

name: 'Build after Dependabot'
on:
workflow_dispatch:
permissions:
contents: write
jobs:
build:
name: 'Build after Dependabot'
runs-on: ubuntu-latest
steps:
- name: check out
uses: actions/[email protected]
with:
fetch-depth: 1
- name: setup node
uses: actions/[email protected]
with:
node-version: 20
cache: 'npm'
- uses: actions/setup-go@v5
with:
go-version: '^1.20'
- name: make
run: |
npm install
make -j 2
- name: pages
run: web-tests-pages
- name: save
run: |
# Git config
git config user.name github-actions[bot]
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
git add .
git commit --allow-empty -m "rebuild"
git push --set-upstream origin ${GITHUB_REF}