Skip to content

Merge pull request #44 from Intosoft/feat/web #95

Merge pull request #44 from Intosoft/feat/web

Merge pull request #44 from Intosoft/feat/web #95

Workflow file for this run

name: JS
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
cache: "yarn"
node-version: 18
- name: Install node modules
run: yarn
- name: TSC
run: yarn tsc
- name: yarn lint
run: yarn lint
- name: Build
run: yarn build