Skip to content

Commit

Permalink
sync lockfile
Browse files Browse the repository at this point in the history
  • Loading branch information
shigma committed Dec 12, 2023
1 parent d3412b0 commit 6740c92
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/sync.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,11 @@ mkdir -p $RUNNER_TEMP/dist
cp -a * $RUNNER_TEMP/dist
cp -a .github $RUNNER_TEMP/dist
cp -a .vscode $RUNNER_TEMP/dist
cp -a .yarn $RUNNER_TEMP/dist
cp .* $RUNNER_TEMP/dist

mkdir $RUNNER_TEMP/dist/.yarn
cp -a .yarn/releases $RUNNER_TEMP/dist/.yarn

mv $RUNNER_TEMP/dist dist

cd dist
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ jobs:
node-version: 20
registry-url: https://registry.npmjs.org/

- name: Install dependencies
run: |-
yarn --no-immutable
rm -rf node_modules
- name: Sync files
run: bash .github/workflows/sync.sh

Expand Down

0 comments on commit 6740c92

Please sign in to comment.