Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add symlink check
  • Loading branch information
Yoann Chaudet committed Aug 18, 2022
1 parent 2ab5cde commit 888798a
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/test.yml
Expand Up @@ -17,25 +17,29 @@ jobs:
- name: Checkout
uses: actions/checkout@v3

- name: Generate artifacts
- name: Generate files
run: mkdir artifact && mkdir artifact2 && cd artifact && ../script/new-artifact.sh
shell: bash

- name: Upload artifacts
- name: Upload artifact
uses: ./
with:
path: artifact

- name: Download artifacts
- name: Download artifact
uses: actions/download-artifact@v3
with:
name: github-pages
path: artifact2

- name: Extract artifacts
- name: Extract artifact
run: tar -xf artifact2/artifact.tar -C artifact2 && rm artifact2/artifact.tar
shell: bash

- name: Compare artifacts
- name: Compare files
run: diff -qr artifact artifact2
shell: bash

- name: Check for absence of symlinks
run: if [ $(find artifact2 -type l | wc -l) != 0 ]; then echo "Symlinks found"; exit 1; fi
shell: bash

0 comments on commit 888798a

Please sign in to comment.