Tutorial to send Shimmer Tokens with iota-sdk in NodeJs #1282
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: test | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
consistency: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
cache: 'yarn' | |
- name: Allow modern Yarn | |
run: | | |
corepack enable | |
- name: Install dependencies | |
run: | | |
yarn | |
- name: Lint Wiki | |
run: | | |
yarn lint:check | |
- name: Format Wiki | |
run: | | |
yarn format:check |