Ensure first character of delimiter is not a value terminator #275
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: 'test' | |
on: | |
push: | |
branches: | |
- 'main' | |
- 'release/**/*' | |
pull_request: | |
branches: | |
- 'main' | |
- 'release/**/*' | |
workflow_dispatch: | |
concurrency: | |
group: '${{ github.workflow }}-${{ github.head_ref || github.ref }}' | |
cancel-in-progress: true | |
jobs: | |
install_and_compile: | |
name: 'install-and-compile' | |
runs-on: 'ubuntu-latest' | |
steps: | |
- uses: 'actions/checkout@v4' | |
- uses: 'actions/setup-node@v4' | |
with: | |
node-version: '20.x' | |
- name: 'npm build' | |
run: 'npm ci && npm run build && npm run docs' | |
- name: 'verify compiled' | |
shell: 'bash' | |
run: |- | |
if [ -n "$(git status --porcelain)" ]; then | |
echo "TypeScript is not compiled!" | |
git diff | |
exit 1 | |
fi | |
unit: | |
name: 'unit' | |
needs: 'install_and_compile' | |
runs-on: '${{ matrix.os }}' | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- 'ubuntu-latest' | |
- 'windows-latest' | |
- 'macos-latest' | |
steps: | |
- uses: 'actions/checkout@v4' | |
- uses: 'actions/setup-node@v4' | |
with: | |
node-version: '20.x' | |
- name: 'npm build' | |
run: 'npm ci && npm run build' | |
- name: 'npm lint' | |
# There's no need to run the linter for each operating system, since it | |
# will find the same thing 3x and clog up the PR review. | |
if: ${{ matrix.os == 'ubuntu-latest' }} | |
run: 'npm run lint' | |
- name: 'npm test' | |
run: 'npm run test' |