add token to test workflow #2
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
on: | |
pull_request: | |
branches: | |
- master | |
name: Token List Generation | |
jobs: | |
generate_lists: | |
name: Generate Token Lists | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set Node-js version | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18.14.2' | |
- name: Install Dependencies | |
run: yarn install --ignore-engines | |
- name: Build ./dist | |
run: yarn build | |
- name: Generate Token List | |
run: yarn generate-auto | |
- name: CI Check | |
run: yarn ci-check-auto |