IT4C.dev/.github/workflows/test-lint.yml
Ulf Gebhardt f0ead6c746
renamed command lint to test to fit the npm standard
new rule textlint-rule-no-exclamation-question-mark
2023-01-03 21:45:54 +01:00

17 lines
275 B
YAML

name: build test CI
on: push
jobs:
build-test:
name: Build Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: npm-install
run: npm install
- name: npm-test
run: npm test