Skip to content

Commit

Permalink
init sub project
Browse files Browse the repository at this point in the history
  • Loading branch information
dsame committed Dec 25, 2023
1 parent 5944621 commit 400a364
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/blank.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ on:
workflow_dispatch:

jobs:
env:
nodejs_version: 18.x
repo_dir: sub

build:
runs-on: ubuntu-latest

Expand All @@ -17,7 +21,9 @@ jobs:
- name: Use Node
uses: actions/setup-node@v2
with:
node-version: 18.x
node-version: ${{ env.nodejs_version }}
cache: 'npm'
cache-dependency-path: ${{ env.repo_dir }}/package-lock.json

- run: npm ci --verbose
- run: |
cd $repo_dir && npm ci
11 changes: 11 additions & 0 deletions package-lock.json → sub/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json → sub/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
},
"homepage": "https://github.com/akv-demo/setup-node-test#readme",
"dependencies": {
"akv-demo-pkg1": "^1.0.0",
"font-awesome": "^4.7.0"
}
}

0 comments on commit 400a364

Please sign in to comment.