Skip to content

Commit f7b773d

Browse files
committed
init
1 parent 3efe580 commit f7b773d

File tree

3 files changed

+56
-7
lines changed

3 files changed

+56
-7
lines changed

.github/workflows/blank.yml

+3-7
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,9 @@ jobs:
1717
- name: Use Node
1818
uses: actions/setup-node@v2
1919
with:
20-
node-version: 16.x
21-
cache: 'yarn'
22-
cache-dependency-path: ./sub/yarn.lock
20+
node-version: 18.x
21+
cache: 'npm'
2322

2423
- name: Run a multi-line script
2524
run: |
26-
node --version
27-
yarn install
28-
node main.js
29-
working-directory: sub
25+
npm install

package-lock.json

+31
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "issue-835",
3+
"version": "1.0.0",
4+
"description": "",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/akv-demo/setup-node-test.git"
12+
},
13+
"author": "",
14+
"license": "ISC",
15+
"bugs": {
16+
"url": "https://github.com/akv-demo/setup-node-test/issues"
17+
},
18+
"homepage": "https://github.com/akv-demo/setup-node-test#readme",
19+
"dependencies": {
20+
"font-awesome": "^4.7.0"
21+
}
22+
}

0 commit comments

Comments
 (0)