Skip to content
This repository was archived by the owner on Oct 6, 2025. It is now read-only.

Commit d53ae5a

Browse files
authored
Create dependabot-test.yml
1 parent c470047 commit d53ae5a

1 file changed

Lines changed: 39 additions & 0 deletions

File tree

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Dependabot Test Build
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- main
7+
workflow_dispatch:
8+
9+
permissions:
10+
pull-requests: write
11+
issues: write
12+
repository-projects: write
13+
14+
jobs:
15+
Build-and-Deploy:
16+
runs-on: ubuntu-latest
17+
18+
if: ${{ github.actor == 'dependabot[bot]' }}
19+
20+
environment:
21+
name: github-pages
22+
url: ${{ steps.deployment.outputs.page_url }}
23+
24+
steps:
25+
- name: Checkout Repo
26+
uses: actions/checkout@v4
27+
28+
- name: Setup Nodejs
29+
uses: actions/setup-node@v4
30+
with:
31+
node-version: 22
32+
33+
- name: Install Dependencies
34+
run: |
35+
npm i -g yarn
36+
yarn install --frozen-lockfile
37+
38+
- name: Build Production
39+
run: yarn build

0 commit comments

Comments
 (0)