mirror of
https://github.com/ThisIsBenny/wishlist-app.git
synced 2025-04-19 23:37:41 +00:00
17 lines
329 B
YAML
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
|