-
Notifications
You must be signed in to change notification settings - Fork 1
35 lines (29 loc) · 907 Bytes
/
node.js.yml
File metadata and controls
35 lines (29 loc) · 907 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
name: Node.js CI
on:
push:
branches: ['master']
jobs:
build:
runs-on: self-hosted
strategy:
matrix:
node-version: [18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v3
- name: Install Yarn
run: sudo npm install -g yarn
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: |
cd server
yarn install
- run: |
cd server
yarn build --if-present
- run: |
cd server
touch .env
echo "${{ secrets.PROD_ENV_FILE }}" > .env