Skip to content

fix: types path in package.json (#154) #242

fix: types path in package.json (#154)

fix: types path in package.json (#154) #242

Workflow file for this run

name: Test
on:
push:
branches: [main]
paths-ignore:
- '**.md'
pull_request:
branches: [main]
paths-ignore:
- '**.md'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18.x'
- uses: actions/cache@v2
with:
path: |
~/.npm
~/.config/yarn/global
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install Yarn
run: |
npm install -g yarn
yarn
- name: Typescript
run: yarn typescript
- name: ESLint
run: yarn lint
- name: Run Tests
run: yarn test --passWithNoTests
- name: Validate docs
run: yarn build-docs --treatWarningsAsErrors