Skip to content

Merge pull request #84 from teknologi-umum/cleanup-resharper #77

Merge pull request #84 from teknologi-umum/cleanup-resharper

Merge pull request #84 from teknologi-umum/cleanup-resharper #77

Workflow file for this run

name: Typescript PR Check
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
paths: ["typescript/**"]
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./typescript
timeout-minutes: 5
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "16"
- uses: pnpm/[email protected]
with:
version: latest
- name: Install dependencies
run: pnpm install
- name: Lint
run: pnpm run lint
- name: Test
run: pnpm run test
- name: Build
run: pnpm run build
- name: Report coverage
uses: codecov/codecov-action@v2
with:
flags: typescript