mirror of
https://github.com/IT4Change/IT4C.dev.git
synced 2025-12-13 09:25:49 +00:00
17 lines
273 B
YAML
17 lines
273 B
YAML
name: lint test CI
|
|
|
|
on: push
|
|
|
|
jobs:
|
|
build-test:
|
|
name: Lint 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 |