Skip to content

Commit 70ec0c7

Browse files
Merge branch 'main' into al3xne-patch-3
2 parents 4fbc179 + 0276f2c commit 70ec0c7

File tree

2 files changed

+40
-0
lines changed

2 files changed

+40
-0
lines changed
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# 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
2+
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
3+
4+
name: Node.js CI
5+
6+
on:
7+
push:
8+
branches: [ "main" ]
9+
pull_request:
10+
branches: [ "main" ]
11+
12+
jobs:
13+
build:
14+
15+
runs-on: ubuntu-latest
16+
17+
strategy:
18+
matrix:
19+
node-version: [ 16.x ]
20+
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
21+
env:
22+
OCI_USER: ${{ secrets.OCI_USER }}
23+
OCI_TENANCY: ${{ secrets.OCI_TENANCY }}
24+
OCI_FINGERPRINT: ${{ secrets.OCI_FINGERPRINT }}
25+
OCI_KEY: ${{ secrets.OCI_KEY }}
26+
#OCI_PASSPHRASE: ${{ secrets.OCI_PASSPHRASE }} #Optional
27+
Q_ID: ${{ secrets.Q_ID }}
28+
Q_ENDPOINT: ${{ secrets.Q_ENDPOINT }}
29+
30+
steps:
31+
- uses: actions/checkout@v3
32+
- name: Use Node.js ${{ matrix.node-version }}
33+
uses: actions/setup-node@v3
34+
with:
35+
node-version: ${{ matrix.node-version }}
36+
cache: 'npm'
37+
- run: |
38+
npm install
39+
node index.js
40+
Binary file not shown.

0 commit comments

Comments
 (0)