wishlist-app/.github/workflows/ci.yml
Benny Samir Hierl d3127b35c8 fix github action
Signed-off-by: Benny Samir Hierl <bennysamir@posteo.de>
2022-01-29 11:28:31 +01:00

17 lines
329 B
YAML

name: ci
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up NodeJs
uses: actions/setup-node@v2
- name: Install dependencies
run: npm ci
- name: Linter
run: npm run lint
- name: Typecheck
run: npm run typecheck