dl.emersa.it/.forgejo/workflows/ci.yaml

23 lines
464 B
YAML
Raw Permalink Normal View History

2025-02-14 20:31:57 +01:00
name: Bump deps (only minor versions)
on: [push]
jobs:
2025-02-15 00:37:24 +01:00
ci:
2025-02-14 20:31:57 +01:00
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
2025-02-14 21:42:56 +01:00
npm run check