mirror of
https://github.com/DeterminateSystems/nix-installer-action.git
synced 2024-12-23 13:32:06 +01:00
Merge pull request #48 from DeterminateSystems/add-dist-folder-checkl
Add check for dist folder
This commit is contained in:
commit
a5a150bc8f
2 changed files with 12 additions and 0 deletions
9
.github/workflows/ci.yml
vendored
9
.github/workflows/ci.yml
vendored
|
@ -7,6 +7,15 @@ on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
check-dist-up-to-date:
|
||||||
|
name: Check the dist/ folder is up to date
|
||||||
|
runs-on: ubuntu-22.04
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- run: npm install --no-save
|
||||||
|
- run: npm run all
|
||||||
|
- run: git status --porcelain=v1
|
||||||
|
- run: test $(git status --porcelain=v1 2>/dev/null | wc -l) -eq 0
|
||||||
run-x86_64-linux:
|
run-x86_64-linux:
|
||||||
name: Run x86_64 Linux
|
name: Run x86_64 Linux
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
|
|
3
CONTRIBUTING.md
Normal file
3
CONTRIBUTING.md
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
# Submitting Pull Requests
|
||||||
|
|
||||||
|
This action is based off https://github.com/actions/javascript-action. As part of your contributing flow you **must** run `npm run all` before we can merge.
|
Loading…
Reference in a new issue