This repository was archived by the owner on Sep 28, 2025. It is now read-only.
Bump globals from 16.3.0 to 16.4.0 #315
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Dependabot Test Build | |
on: | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
permissions: | |
pull-requests: write | |
issues: write | |
contents: read | |
id-token: write | |
jobs: | |
test-build: | |
if: github.actor == 'dependabot[bot]' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v5 | |
- name: Setup Nodejs | |
uses: actions/setup-node@v5 | |
with: | |
node-version: 22 | |
- name: Setup Go | |
uses: actions/setup-go@v6 | |
with: | |
go-version: '1.x' | |
- name: Install Dependencies | |
run: | | |
npm i -g yarn | |
yarn setup-full | |
- name: Build Production | |
run: yarn build-full | |
env: | |
CGO_ENABLED: 1 |