Your music, beautifully tracked. All yours. (coming soon) teal.fm
teal-fm atproto

Build lexicon-cli tool in workflow

Changed files
+6
.github
workflows
+6
.github/workflows/amethyst.yml
··· 41 id: cache-key 42 run: echo "key=amethyst-build-${{ hashFiles('apps/amethyst/**', 'packages/**', 'lexicons/**') }}" >> $GITHUB_OUTPUT 43 44 - name: Build web 45 run: pnpm turbo build:web --filter=@teal/amethyst 46 ··· 70 uses: ./.github/actions/setup 71 with: 72 setup-node: "true" 73 74 - name: Setup Expo CLI 75 run: npm install -g @expo/cli
··· 41 id: cache-key 42 run: echo "key=amethyst-build-${{ hashFiles('apps/amethyst/**', 'packages/**', 'lexicons/**') }}" >> $GITHUB_OUTPUT 43 44 + - name: Build lex tool 45 + run: cd tools/lexicon-cli && pnpm i && pnpm build 46 + 47 - name: Build web 48 run: pnpm turbo build:web --filter=@teal/amethyst 49 ··· 73 uses: ./.github/actions/setup 74 with: 75 setup-node: "true" 76 + 77 + - name: Build lex tool 78 + run: cd tools/lexicon-cli && pnpm i && pnpm build 79 80 - name: Setup Expo CLI 81 run: npm install -g @expo/cli