[PB-5590] test(user): add E2E tests for user registration flow #3462
Workflow file for this run
This file contains hidden or 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: Run Unit Tests | |
| on: | |
| push: | |
| branches: | |
| - 'master' | |
| - 'develop' | |
| pull_request: | |
| branches: | |
| - 'master' | |
| - 'develop' | |
| jobs: | |
| run-tests: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| packages: read | |
| environment: | |
| name: development | |
| strategy: | |
| matrix: | |
| node-version: [20.x] | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| registry-url: 'https://npm.pkg.github.com' | |
| # We should see why permissions field is not doing the job. This should be removed | |
| - run: echo "registry=https://registry.yarnpkg.com/" > .npmrc | |
| - run: echo "@internxt:registry=https://npm.pkg.github.com" >> .npmrc | |
| # You cannot read packages from other private repos with GITHUB_TOKEN | |
| # You have to use a PAT instead https://github.com/actions/setup-node/issues/49 | |
| - name: Configure NPM authentication | |
| run: echo "//npm.pkg.github.com/:_authToken=${NPM_TOKEN}" >> .npmrc | |
| env: | |
| NPM_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | |
| - run: echo "always-auth=true" >> .npmrc | |
| - name: Install dependencies | |
| run: yarn | |
| - name: Run unit tests | |
| run: yarn test |