-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: a github action to test frontend reproducibility (#663)
Signed-off-by: David Dal Busco <[email protected]>
- Loading branch information
1 parent
f7891ef
commit d1f0b10
Showing
3 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: Prepare | ||
|
||
description: Checkout and install dependencies | ||
|
||
runs: | ||
using: composite | ||
steps: | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
registry-url: 'https://registry.npmjs.org' | ||
- name: Install latest npm | ||
shell: bash | ||
run: npm install -g npm@latest | ||
- name: Install dependencies | ||
shell: bash | ||
run: npm ci |
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: Frontend Reproducibility | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
frontend-reproducibility: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Prepare | ||
uses: ./.github/actions/prepare | ||
|
||
- name: Run reproducibility test | ||
run: bash .github/scripts/test-frontend-reproducibility |