chore: fix linting errors #707
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: '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 |