Skip to content

Commit

Permalink
chore: add the build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
razonyang committed Dec 30, 2024
1 parent 6082e4a commit 4eec48d
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: build

on:
push:
workflow_dispatch:

permissions:
contents: write
pull-requests: write

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm ci
- run: npm run build
- name: Create Pull Request
uses: peter-evans/create-pull-request@v7
with:
token: ${{ secrets.MAINTAINER_TOKEN }}

0 comments on commit 4eec48d

Please sign in to comment.