Bump protobufjs from 6.11.3 to 6.11.4 #437
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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) |