Skip to content

OHRM5X-2151: Enable npm publish by github action #42

OHRM5X-2151: Enable npm publish by github action

OHRM5X-2151: Enable npm publish by github action #42

Workflow file for this run

name: Type Check
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
- name: Install npm dependencies
run: yarn install
- name: Type check
run: yarn type-check