Skip to content

Merge pull request #2 from tal7aouy/feat #1

Merge pull request #2 from tal7aouy/feat

Merge pull request #2 from tal7aouy/feat #1

Workflow file for this run

name: Check
on:
push:
branches:
- main
jobs:
lint-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: '16'
- run: npm install --production=false
- run: npx eslint . --ext .ts
- run: npm test