Skip to content
This repository was archived by the owner on Dec 15, 2022. It is now read-only.

Commit ebe063f

Browse files
authored
fix gh actions token failure
1 parent b431b09 commit ebe063f

File tree

1 file changed

+15
-3
lines changed

1 file changed

+15
-3
lines changed
Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,23 @@ on:
66
- master
77

88
jobs:
9-
test:
10-
uses: dubisdev/ghwf/.github/workflows/tests-node-yarn.yml@main
9+
run_tests:
10+
name: Run Node Tests
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v1
14+
- uses: actions/setup-node@v1
15+
with:
16+
node-version: 12
17+
- name: Installing project dependencies
18+
run: yarn
19+
- name: Running tests
20+
run: yarn test
21+
env:
22+
TODOIST_TOKEN: ${{ secrets.TODOIST_TOKEN }}
1123

1224
publish:
13-
needs: test
25+
needs: run_tests
1426
runs-on: ubuntu-latest
1527
steps:
1628
- uses: actions/checkout@v1

0 commit comments

Comments
 (0)