Skip to content

Do not merge: Examples adjusted for primary network cross-chain transfers on Etna Devnet #2330

Do not merge: Examples adjusted for primary network cross-chain transfers on Etna Devnet

Do not merge: Examples adjusted for primary network cross-chain transfers on Etna Devnet #2330

Workflow file for this run

name: PR checks
on:
push:
branches:
- master
pull_request:
jobs:
Lint-build-test:
name: Lint, build and test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint:check
- name: Typecheck
run: yarn typecheck
- name: Test
run: yarn test
- name: Build
run: yarn build