Skip to content

Commit

Permalink
馃挌 Attempt to patch untar step (#4384)
Browse files Browse the repository at this point in the history
Third attempt, another philosophy now.
  • Loading branch information
dubzzz committed Oct 24, 2023
1 parent 5aafd02 commit 754dfc5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/workflows/build-status.yml
Expand Up @@ -263,7 +263,12 @@ jobs:
name: bundles
path: packages/
- name: Unpack production packages
if: matrix.os != 'windows-latest'
run: yarn unpack:all
- name: Unpack production packages (Windows only)
if: matrix.os == 'windows-latest'
# untar seems to fail on Windows when untaring already existing files
run: yarn unpack:all || true
- name: Alter internals to behave as if published
run: yarn workspaces foreach -pRvi --from '${{matrix.package-name}}' --no-private --exclude '${{matrix.package-name}}' exec yarn node $(yarn bin packaged) --keep-node-modules
- name: Unit tests
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -22,7 +22,7 @@
"publint:all": "yarn workspaces foreach -pvi --no-private exec publint --strict",
"version:bump": "yarn version check --interactive",
"pack:all": "yarn workspaces foreach -pvi --no-private pack --out package.tgz",
"unpack:all": "yarn workspaces foreach -pvi --no-private exec tar -xvf package.tgz --strip-components=1 --exclude='package/package.json' --exclude='package/LICENSE' --exclude='package/CHANGELOG.md' --exclude='package/README.md'"
"unpack:all": "yarn workspaces foreach -pvi --no-private exec tar -xvf package.tgz --strip-components=1 --exclude='package/package.json'"
},
"devDependencies": {
"@fast-check/packaged": "*",
Expand Down

0 comments on commit 754dfc5

Please sign in to comment.