Preserve the original message in ClientException #74
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: Build | |
on: [pull_request] | |
jobs: | |
build: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/[email protected] | |
with: | |
node-version: '20.x' | |
- name: Install dependencies | |
run: yarn | |
- name: Unit Test | |
run: yarn test | |
- name: Build | |
run: yarn build |