Skip to content

Feature flag Amazon Game Store #1226

Feature flag Amazon Game Store

Feature flag Amazon Game Store #1226

Workflow file for this run

name: Test
on:
pull_request:
branches: [main]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
concurrency:
group: test-${{ github.ref }}
cancel-in-progress: true
steps:
- name: Checkout repository.
uses: actions/checkout@v3
with:
submodules: 'recursive'
token: ${{ secrets.pat }}
- uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'yarn'
- name: Reconfigure git to use HTTP authentication
run: >
git config --global url."https://github.com/".insteadOf
ssh://[email protected]/
- name: Authenticate with private NPM package
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
- name: Install modules.
run: yarn setup
- name: Test
run: yarn test:ci