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

Commit 5c37521

Browse files
authored
add todoist_token secret
1 parent 5c1ac06 commit 5c37521

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

.github/workflows/tests.yml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,17 @@ name: Run Tests
33
on: [pull_request]
44

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

0 commit comments

Comments
 (0)