Skip to content

jwt token added

jwt token added #1324

Workflow file for this run

name: LAMP Server Build Test
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
env:
SECRETS: ${{ secrets.LAMP_SECRETS }}
run: |
npm install
echo $SECRETS > src/secrets.ts
npm run build