[PB-3257] Migrate authentication and two-factor endpoints. #1225
Workflow file for this run
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: Pre build ( Health check ) | |
on: | |
push: | |
branches: | |
- 'master' | |
- 'develop' | |
pull_request: | |
branches: | |
- 'master' | |
- 'develop' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check Out Repo | |
uses: actions/checkout@v2 | |
- name: Setup npm | |
run: | | |
echo "registry=https://registry.yarnpkg.com/" > .npmrc | |
echo "@internxt:registry=https://npm.pkg.github.com" >> .npmrc | |
echo //npm.pkg.github.com/:_authToken=${{ secrets.PERSONAL_ACCESS_TOKEN }} >> .npmrc | |
echo "always-auth=true" >> .npmrc | |
- name: Install dependencies | |
run: yarn install | |
- name: Build | |
run: yarn build |