fix solc use forge std foundry #551
This file contains hidden or 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
| # Fails if a PR doesn't have a changeset and is not labeled | ||
|
Check failure on line 1 in .github/workflows/check-changeset-added.yml
|
||
| # as "no changeset needed" | ||
| name: Check that the PR has a changeset | ||
| permissions: | ||
| contents: read | ||
| pull-requests: read | ||
| on: | ||
| pull_request: | ||
| branches: | ||
| - main | ||
| types: | ||
| - opened | ||
| - synchronize | ||
| - reopened | ||
| - labeled | ||
| - unlabeled | ||
| jobs: | ||
| test: | ||
| name: Test on node ${{ matrix.node_version }} and ${{ matrix.os }} | ||
| runs-on: ${{ matrix.os }} | ||
| strategy: | ||
| matrix: | ||
| node_version: ['18.x', '20.x'] | ||
| os: [ubuntu-latest, windows-latest, macOS-latest] | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - name: Use Node.js ${{ matrix.node_version }} | ||
| uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: ${{ matrix.node_version }} | ||
| - name: npm install, build and test | ||
| run: | | ||
| npm install | ||
| npm run build --if-present | ||
| npm test | ||
| if: github.event_name == 'push' | ||
| env: | | ||
| const pullNumber = context.issue.number; | ||
| const { data: files } = await github.rest.pulls.listFiles({ | ||
| ...context.issue, | ||
| pull_number: pullNumber | ||
| }); | ||
| const changeset = files.find( | ||
| file => file.status === "added" && file.filename.startsWith(".changeset/") | ||
| ); | ||
| if (changeset) { | ||
| console.log("Changeset found:", changeset.filename); | ||
| return; | ||
| } | ||
| console.log("No changeset found"); | ||
| const { data: pull } = await github.rest.pulls.get({ | ||
| ...context.issue, | ||
| pull_number: pullNumber | ||
| }); | ||
| const noChangesetNeededLabel = pull.labels | ||
| .some(l => l.name === "no changeset needed"); | ||
| if (noChangesetNeededLabel) { | ||
| console.log('The PR is labeled as "no changeset needed"'); | ||
| return; | ||
| } | ||
| console.error('Error: No changeset file found and no "no changeset needed" label applied.'); | ||
| console.error('Please add a changeset file or label the PR as "no changeset needed".'); | ||
| process.exit(1); | ||