Add ability to configure custom YAML tags for VSCode. #16
Workflow file for this run
This file contains hidden or 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: tests | |
| on: | |
| push: | |
| branches-ignore: [main] | |
| jobs: | |
| unit-tests: | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, windows-latest] | |
| node_version: [24] | |
| fail-fast: false | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| version: 10 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: '.nvmrc' | |
| cache: 'pnpm' | |
| - run: pnpm install --frozen-lockfile | |
| - name: Check formatting | |
| run: pnpm exec prettier --check . | |
| - run: pnpm run build | |
| - run: pnpm run test |