Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion .github/workflows/web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -986,8 +986,18 @@ jobs:
mkdir -p /tmp/android-sdk-dummy
npm run postinstall

# The binary comes from the package's install script and isn't in the
# node_modules cache.
- name: Link environment linter executable
run: npm run rebuild -w @audius/dotenv-linter
run: |
if [[ ! -f packages/dotenv-linter/bin/dotenv-linter ]]; then
(cd packages/dotenv-linter && npm run install)
fi
npm run rebuild -w @audius/dotenv-linter

# eslint resolves @audius/* imports through their dist builds.
- name: Build workspace dependencies
run: npx turbo run build --filter='embed^...'

- name: Verify embed
working-directory: packages/embed
Expand Down
Loading