Merge pull request #309 from scientist-softserv/308-unable-to-view-re… #413
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
# TODO(alishaevn): remove the references to the github package registry | |
# TODO(alishaevn): run the cypress tests during this action | |
# name: Test Suite | |
# on: | |
# push: {} | |
# jobs: | |
# build: | |
# runs-on: ubuntu-latest | |
# permissions: | |
# contents: read | |
# packages: write | |
# steps: | |
# - uses: actions/checkout@v3 | |
# # Setup .npmrc file to publish to GitHub Packages | |
# - uses: actions/setup-node@v3 | |
# with: | |
# registry-url: 'https://npm.pkg.github.com' | |
# # Defaults to the user or organization that owns the workflow file | |
# scope: '@scientist-softserv' | |
# node-version-file: package.json | |
# - name: Authenticate with private GPR package | |
# run: echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" > $NPM_CONFIG_USERCONFIG | |
# - run: yarn install | |
# - run: yarn test | |
# - run: yarn build |