adds ability to transform payload to the config similarly to official client #78
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: Pull Request Workflow | |
on: pull_request | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "18.16.1" | |
registry-url: https://npm.pkg.github.com | |
- id: super-cache | |
uses: mangs/super-cache-action@v3 | |
- if: steps.super-cache.outputs.cache-hit != 'true' | |
run: npm ci | |
# Task execution | |
- run: npm run validate:environment | |
- run: npm run validate:linting:eslint | |
- run: npm run lint:typescript | |
- run: npm run test:unit | |
- run: npm run build:vite | |
- run: npm run build:types | |
- run: npm run validate:types |