mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-25 17:57:28 +08:00
29 lines
483 B
YAML
29 lines
483 B
YAML
|
name: test-js
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
paths:
|
||
|
- '**.js'
|
||
|
- '**.ts'
|
||
|
- '**.json'
|
||
|
pull_request:
|
||
|
paths:
|
||
|
- '**.js'
|
||
|
- '**.ts'
|
||
|
- '**.json'
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
if: ${{ github.ref != 'refs/heads/l10n_development' }}
|
||
|
runs-on: ubuntu-24.04
|
||
|
steps:
|
||
|
- uses: actions/checkout@v4
|
||
|
|
||
|
- name: Install NPM deps
|
||
|
run: npm ci
|
||
|
|
||
|
- name: Run TypeScript type checking
|
||
|
run: npm run ts:lint
|
||
|
|
||
|
- name: Run JavaScript tests
|
||
|
run: npm run test
|