fix: path params must not contain any unescaped generic syntax characters #346
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: Build | |
on: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
node-version: [20.x] | |
os: [windows-latest, ubuntu-latest] | |
steps: | |
- name: Setup Git Config | |
run: | | |
git config --global core.autocrlf false | |
git config --global core.eol lf | |
git config --global user.email "[email protected]" | |
git config --global user.name "gh-actions" | |
- uses: actions/checkout@v3 | |
- uses: pnpm/[email protected] | |
with: | |
version: 8.15.1 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: "20.x" | |
cache: "pnpm" | |
- run: pnpm i --frozen-lockfile | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Test & Build | |
run: | | |
pnpm build | |
pnpm test:code:gen | |
pnpm test | |
env: | |
CI: true |