Reproducible builds #211
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
name: Reproducible builds | |
on: | |
# Once a week on Monday at 00:30 UTC | |
schedule: | |
- cron: '30 0 * * 1' | |
# Or manually | |
workflow_dispatch: | |
# Or when developing this workflow | |
push: | |
paths: | |
- .github/workflows/reproducible.yaml | |
jobs: | |
run: | |
name: Verify releases | |
if: ${{ github.repository == 'qunitjs/qunit' }} # skip noisy cron on forks | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js 18 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18.x | |
- run: node build/reproducible-builds.js |