Bump @typescript-eslint/eslint-plugin from 8.11.0 to 8.12.2 #112
Workflow file for this run
This file contains 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 | |
repository-projects: write | |
jobs: | |
Dependabot: | |
runs-on: ubuntu-latest | |
if: ${{ github.actor == 'dependabot[bot]' }} | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- name: Setup Nodejs | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
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 |