Skip to content

[ci] sync template files #79

[ci] sync template files

[ci] sync template files #79

Workflow file for this run

name: Integration
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_call:
concurrency:
cancel-in-progress: true
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request_target' && github.head_ref || github.ref }}
env:
NODE_VERSION: 20
jobs:
test:
name: Test
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: pnpm
- name: Install dependencies
run: pnpm install
# - name: Generates docs TypeScript types
# run: pnpm astro sync
# working-directory: docs
- name: Test
run: pnpm test
working-directory: ./packages/starlight-spell-checker