22 lines
464 B
YAML
22 lines
464 B
YAML
name: Bump deps (only minor versions)
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
ci:
|
|
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
|