[publish build] add publish build #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check SDK types | |
on: | |
pull_request: | |
branches: [ main, prod ] | |
jobs: | |
check_sdk_branch: | |
name: Main branch | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: read | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Setup node and npm | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18.x' | |
- name: Run Types check | |
run: 'npx tsc' |