Skip to content

fix(ci): fix previous build due to ci issue #10

fix(ci): fix previous build due to ci issue

fix(ci): fix previous build due to ci issue #10

Workflow file for this run

# This is a basic workflow that is manually triggered
name: CI
# Controls when the action will run. Workflow runs when manually triggered using the UI
# or API.
on:
- workflow_dispatch
- push
- pull_request
jobs:
style-check:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v3
- uses: actions/checkout@v3
- name: Install dependencies
run: npm install
- name: Check formatting with Prettier
run: npm run check-format
type-check:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v3
- uses: actions/checkout@v3
- name: Install dependencies
run: npm install
- name: Build with Typescript
run: npm run build
unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v3
- uses: actions/checkout@v3
- name: Install dependencies
run: npm install
- name: Run unit tests
run: npm test