-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (39 loc) · 921 Bytes
/
node-test.yml
File metadata and controls
41 lines (39 loc) · 921 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Test NodeJS Code
on:
workflow_dispatch:
workflow_call:
secrets:
MONGO_URI:
required: true
JWT_SECRET:
required: true
inputs:
JWT_ALGORITHM:
required: true
type: string
JWT_ISSUER:
required: true
type: string
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "16.x"
cache: "yarn"
- name: Install Dependencies
run: yarn
- name: Build Code
run: yarn build
- name: Run Tests
env:
MONGO_URI: ${{ secrets.MONGO_URI }}
JWT_SECRET: ${{ secrets.JWT_SECRET }}
JWT_ALGORITHM: ${{ inputs.JWT_ALGORITHM }}
JWT_ISSUER: ${{ inputs.JWT_ISSUER }}
run: yarn test