Skip to content

Add error handling to sdk.sh script #238

Add error handling to sdk.sh script

Add error handling to sdk.sh script #238

Workflow file for this run

name: Lint & Build
on:
pull_request:
push:
branches:
- 'main'
concurrency:
group: validate-${{ github.ref_name }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Install Mise
uses: caido/[email protected]
with:
version: ${{ vars.CI__MISE_VERSION }}
- name: Install dependencies
run: pnpm install
- name: Lint JS
run: pnpm lint-prod
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Install Mise
uses: caido/[email protected]
with:
version: ${{ vars.CI__MISE_VERSION }}
- name: Install dependencies
run: pnpm install
- name: Run build
run: pnpm build