Skip to content

Bump @grpc/grpc-js from 1.6.8 to 1.8.17 #436

Bump @grpc/grpc-js from 1.6.8 to 1.8.17

Bump @grpc/grpc-js from 1.6.8 to 1.8.17 #436

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: SLIIT FOSS CI
on:
pull_request:
branches: [master]
jobs:
node-build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Create env file
run: |
touch .env
echo EMAIL_SERVICE_ID=${{ secrets.EMAIL_SERVICE_ID }} >> .env
echo EMAIL_TEMPLATE_ID=${{ secrets.EMAIL_TEMPLATE_ID }} >> .env
echo EMAIL_USER_ID=${{ secrets.EMAIL_USER_ID }} >> .env
echo FIREBASE_WEB_CONFIG=${{ secrets.FIREBASE_WEB_CONFIG }} >> .env
echo AUTH_EMAIL=${{ secrets.AUTH_EMAIL }} >> .env
echo AUTH_PASS=${{ secrets.AUTH_PASS }} >> .env
cat .env
- run: npm install
- run: npm run build
docker-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build the Docker image
run: docker build . --file Dockerfile --tag my-image-name:$(date +%s)