remove telemetry implementation #226
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 | |
paths: | |
- '.github/**' | |
- 'config/**' | |
- 'images/**' | |
- 'snippets/**' | |
- 'src/**' | |
- 'syntaxes/**' | |
- 'package.json' | |
- 'pnpm-lock.yaml' | |
pull_request: | |
branches: | |
- main | |
paths: | |
- '.github/**' | |
- 'config/**' | |
- 'images/**' | |
- 'snippets/**' | |
- 'src/**' | |
- 'syntaxes/**' | |
- 'package.json' | |
- 'pnpm-lock.yaml' | |
workflow_dispatch: | |
jobs: | |
default: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
node-version: ['lts/*', '*'] | |
os: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
with: | |
fetch-depth: 1 | |
- uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Enable Corepack | |
run: corepack enable | |
- name: Get pnpm store directory | |
shell: bash | |
run: | | |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV | |
- uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0 | |
name: Setup pnpm cache | |
with: | |
path: ${{ env.STORE_PATH }} | |
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm-store- | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile --strict-peer-dependencies | |
- name: Lint Source | |
run: pnpm run --if-present lint | |
- name: Build Source | |
run: pnpm run --if-present build | |
- name: Run Tests | |
run: pnpm run --if-present test | |