feat: add tool to create non transferable token mint #236
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: ci | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v3 | |
with: | |
version: 9.4.0 | |
- name: Install node-gyp prerequisites | |
run: sudo apt update && sudo apt install -y build-essential python3 pkg-config libudev-dev libusb-1.0-0-dev | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "23" | |
cache: "pnpm" | |
- name: Install dependencies | |
run: pnpm install -r --no-frozen-lockfile | |
- name: Run lint and fix | |
run: pnpm run lint:fix | |
- name: Build packages | |
run: pnpm run build |