Skip to content

publishing to 3.0.0 #158

publishing to 3.0.0

publishing to 3.0.0 #158

Workflow file for this run

name: TypeScript SDK Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
defaults:
run:
working-directory: typescript
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Yarn Cache
uses: actions/cache@v3
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-modules-
- run: yarn install
- run: yarn build
- run: yarn test