auth feature complete #10
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
name: PUSH ON MASTER BRANCH | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 14 | |
- name: Running Tests on Client service | |
run: cd client && npm install && npm run test | |
- name: Running Tests on Auth service | |
run: cd authservice && npm install && npm run test | |
- name: Build Docker | |
run: docker-compose build | |
# production deployment thing |