fix: Handle potential undefined position.end in locEnd, and add a getVisitorKeys method to avoid unnecessary traversal. #709
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: 'CI' | |
on: | |
push: | |
branches: | |
- main | |
- next | |
pull_request: | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
node_version: [18, 20] | |
include: | |
- os: windows-latest | |
node_version: 18 | |
- os: macos-latest | |
node_version: 18 | |
fail-fast: false | |
env: | |
LANG: en-us | |
name: 'Test: node-${{ matrix.node_version }}, ${{ matrix.os }}' | |
steps: | |
- name: Check out code using Git | |
uses: actions/checkout@v4 | |
- name: Install Tools & Dependencies | |
uses: ./.github/actions/install | |
- name: Build prettier-plugin-astro | |
run: pnpm build | |
- name: Test | |
run: pnpm test | |
lint: | |
runs-on: ubuntu-latest | |
name: 'Lint: node-16, ubuntu-latest' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Tools & Dependencies | |
uses: ./.github/actions/install | |
- name: Build prettier-plugin-astro | |
run: pnpm build | |
- name: Lint | |
run: pnpm lint |