fix:add check and replace warn instead of error for setCustomNameStan… #70
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: Web Kit SDK Build & Test | |
on: pull_request | |
# Kit is split into Client and Server packages | |
# We only need to run our workflows against GA4Client | |
defaults: | |
run: | |
working-directory: packages/GA4Client | |
jobs: | |
build-and-test: | |
name: Build and Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: NPM install | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
- name: Run NPM CI | |
run: npm ci | |
- name: Build Files | |
run: npm run build | |
- name: Run Core tests | |
run: npm run test | |
- name: Archive npm failure logs | |
uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: npm-logs | |
path: ~/.npm/_logs |