We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5d64fd commit dd7c90cCopy full SHA for dd7c90c
.github/WORKFLOWS/solution.yaml
@@ -9,24 +9,19 @@ jobs:
9
runs-on: ubuntu-latest
10
11
steps:
12
- - uses: actions/checkout@v2
13
- - name: Setup node
14
- uses: actions/setup-node@v2
15
- with:
16
- node-version: 14
17
- uses: actions/checkout@v2
18
with:
19
ref: ${{ github.head_ref }}
20
+ - name : Set up node and npm
+ run : |
+ cd ./.github/src/
+ npm install
+ cd ./.github/src
21
# Runs a single command using the runners shell
22
- - name: Run the fetching script
+ - name: Time to download script
23
uses : ./
24
- run: |
25
- cd .github/src/
26
- npm install --save
27
- node app.js
28
- env :
29
- COOKIE_SECRET : ${{secrets.COOKIE_SECRET}}
+
30
- name: pushing the changes!!
31
uses: stefanzweifel/git-auto-commit-action@v4
32
0 commit comments