Skip to content

pkg: add lint-types and tsconfig to the project. #7

pkg: add lint-types and tsconfig to the project.

pkg: add lint-types and tsconfig to the project. #7

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install tools
run: npm install --location=global bslint typescript
- name: Install dependencies
run: npm install
- name: Lint
run: npm run lint
- name: Lint types
run: npm run lint-types
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install dependencies
run: npm install
- name: Test
run: npm run test