build(deps): update dependency hast-util-to-string to v3.0.1 #360
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: Node.js CI | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: [main] | |
paths: | |
- '**.ts' | |
- 'package.json' | |
- 'pnpm-lock.yaml' | |
- '.github/workflows/*.yml' | |
push: | |
branches: [main] | |
paths: | |
- '**.ts' | |
- 'package.json' | |
- 'pnpm-lock.yaml' | |
- '.github/workflows/*.yml' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} | |
jobs: | |
ci: | |
name: Node.js CI | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Setup pnpm | |
uses: pnpm/action-setup@a3252b78c470c02df07e9d59298aecedc3ccdd6d # v3.0.0 | |
with: | |
version: 8 | |
- name: Setup node environment | |
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 | |
with: | |
node-version: 20.10.0 | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm install | |
- name: Run build | |
run: pnpm build | |
- name: Run test | |
run: pnpm test |