-
Notifications
You must be signed in to change notification settings - Fork 2
38 lines (32 loc) · 1.24 KB
/
node.js.yml
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
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Node.js CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
env:
GOOGLE_OAUTH_TOKEN: ${{ secrets.GOOGLE_OAUTH_TOKEN }}
OPEN_CAGE_API_TOKEN: ${{ secrets.OPEN_CAGE_API_TOKEN }}
FIREBASE_KEY: ${{ secrets.FIREBASE_KEY }}
FIREBASE_CLIENT_EMAIL: ${{ secrets.FIREBASE_CLIENT_EMAIL }}
FIREBASE_PROJECT_ID: ${{ secrets.FIREBASE_PROJECT_ID }}
FIREBASE_CLIENT_ID: ${{ secrets.FIREBASE_CLIENT_ID }}
FIREBASE_CERT_URL: ${{ secrets.FIREBASE_CERT_URL }}
FIREBASE_KEY_ID: ${{ secrets.FIREBASE_KEY_ID }}
DB_PORT: ${{ secrets.DB_PORT }}
NODE_ENV: "test"
steps:
- uses: actions/checkout@v3
- name: Use Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 20.x
- run: npm install
working-directory: back_end
- run: sudo -E npm test suite
working-directory: back_end