Skip to content

[Metrics] Send version_from and version_to on Game Update Success event #3596

[Metrics] Send version_from and version_to on Game Update Success event

[Metrics] Send version_from and version_to on Game Update Success event #3596

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@v4
- uses: actions/setup-node@v3
with:
node-version: '20'
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: setup env file
run: |
echo "VITE_LD_ENVIRONMENT_ID=${{ secrets.VITE_LD_ENVIRONMENT_ID_TEST }}" > .env
echo "VITE_IPFS_API=${{ secrets.VITE_IPFS_API }}" >> .env
- name: Install modules.
run: yarn setup
- name: Test
run: yarn test:ci