ci
This commit is contained in:
parent
75bfadf2f4
commit
d65310fb85
1 changed files with 22 additions and 0 deletions
22
.forgejo/workflows/ci.yaml
Normal file
22
.forgejo/workflows/ci.yaml
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
name: Bump deps (only minor versions)
|
||||||
|
|
||||||
|
on: [push]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
update-dependencies:
|
||||||
|
runs-on: docker
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout Repository
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.FORGEJO_TOKEN }}
|
||||||
|
- name: Set up Node.js
|
||||||
|
uses: actions/setup-node@v3
|
||||||
|
with:
|
||||||
|
node-version: '20'
|
||||||
|
- name: Prepare, Check, Lint and Format
|
||||||
|
run: |
|
||||||
|
npm install
|
||||||
|
npm run prepare
|
||||||
|
npm run check
|
Loading…
Add table
Reference in a new issue