ci: remove "build:lib" script from workflow

This commit is contained in:
metonym 2022-08-25 11:17:52 -07:00
commit 5433923733

View file

@ -6,19 +6,17 @@ on:
branches: [master] branches: [master]
jobs: jobs:
build: test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- uses: actions/cache@v2 - uses: actions/cache@v2
id: yarn-cache id: yarn-cache
with: with:
path: "**/node_modules" path: "**/node_modules"
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }} key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: Install dependencies and build the library - name: Test TypeScript definitions
run: | run: |
yarn yarn
yarn build:lib
yarn test:types yarn test:types