This commit is contained in:
parent
f106226e70
commit
11bd65d2d0
6 changed files with 1511 additions and 3 deletions
36
.forgejo/workflows/checks.yml
Normal file
36
.forgejo/workflows/checks.yml
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
name: CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: [docker]
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Setup Node.js
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: '20'
|
||||
registry-url: ${{ vars.VERDACCIO_URL }}
|
||||
|
||||
- name: Install dependencies
|
||||
run: npm ci
|
||||
|
||||
- name: Prettier
|
||||
run: npm run prettier:check
|
||||
|
||||
- name: ES Lint
|
||||
run: npm run lint
|
||||
|
||||
- name: Test
|
||||
run: npm run test
|
||||
|
||||
- name: Build
|
||||
run: npm run build
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue