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 7214632
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/blank.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,23 @@ on:
workflow_dispatch:

jobs:

build:
runs-on: ubuntu-latest

env:
nodejs_version: 18.x
repo_dir: sub

steps:
- uses: actions/checkout@v3

- 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 --verbose
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 7214632

Please sign in to comment.