fix: default import from cjs files causing module resolution errors i… #3430
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: CI | |
on: | |
pull_request: | |
push: | |
branches: [master] | |
jobs: | |
lint: | |
name: Lint Check | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./packages/wallet-sdk | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Checkout node action | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
cache-dependency-path: 'yarn.lock' | |
- name: Install NPM dependencies | |
run: yarn install --immutable | |
- name: Check ESLint | |
run: yarn lint | |
typecheck: | |
name: Type Check | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./packages/wallet-sdk | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Checkout node action | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
cache-dependency-path: '**/yarn.lock' | |
- name: Install NPM dependencies | |
run: yarn install --immutable | |
- name: Runs compile asset script | |
run: node ./compile-assets.cjs | |
- name: Check Types | |
run: yarn typecheck | |
tests: | |
name: Tests | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./packages/wallet-sdk | |
strategy: | |
matrix: | |
node-version: [20.x, 22.x] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache-dependency-path: '**/yarn.lock' | |
- name: Install NPM dependencies | |
run: yarn install --immutable | |
- name: Runs compile asset script | |
run: node ./compile-assets.cjs | |
- name: Run Unit Tests | |
run: yarn test | |
lint-testapp: | |
name: Lint Testapp | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./examples/testapp | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Checkout node action | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
cache-dependency-path: 'yarn.lock' | |
- name: Install NPM dependencies | |
run: yarn install --immutable | |
- name: eslint | |
run: yarn lint |