Skip to content

feat: escape names containing $ or # #95

feat: escape names containing $ or #

feat: escape names containing $ or # #95

Workflow file for this run

name: build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
name: Run tests suite
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: '8.0.x'
- name: Setup Node.js environment
uses: actions/setup-node@v4
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Tests
run: ./build.sh test
lint:
runs-on: ubuntu-latest
name: Check formatting
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: '8.0.x'
- name: Check formatting
run: ./build.sh lint