You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pull_request: # on open, sync, re-open a PR AND files inside auth/** has changed then only run this suite
paths:
- 'auth/**'
jobs:
build:
runs-on: ubuntu-latest #specify machine
steps:
- uses: actions/checkout@v2 #take code out of our project
- run: cd auth && npm install && npm run test:ci #run tests for auth service "add a CI script inside package.json so that it runs only once and doesnt watch for changes"