We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
@esbuild/linux-x64@npm
yarn-project.nix
1 parent a7a1a9c commit d71a590Copy full SHA for d71a590
.github/workflows/std.yml
@@ -69,7 +69,18 @@ concurrency:
69
group: std-${{ github.workflow }}-${{ github.ref }}
70
cancel-in-progress: true
71
jobs:
72
+ check-yarn-project-nix:
73
+ runs-on: ubuntu-latest
74
+ steps:
75
+ - uses: actions/checkout@v4
76
+ - run: |
77
+ if ! grep -qF '"@esbuild/linux-x64@npm:' yarn-project.nix ; then
78
+ echo >&2 'Please, make sure that they ‘yarn-project.nix’ contains “@esbuild/linux-x64@npm” (see your diff).'
79
+ exit 1
80
+ fi
81
+
82
discover:
83
+ needs: check-yarn-project-nix
84
# Don’t run on PRs from forks (no access to secrets):
85
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository
86
outputs:
0 commit comments