This repository has been archived by the owner on Nov 9, 2024. It is now read-only.
BugFix/Spelling correction in telemetry payload (#2001) #2
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 CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- '*' | |
permissions: | |
contents: read | |
jobs: | |
build: | |
strategy: | |
matrix: | |
platform: [ubuntu-latest] | |
node-version: [18.15.0] | |
runs-on: ${{ matrix.platform }} | |
env: | |
PUPPETEER_SKIP_DOWNLOAD: true | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 6.32.9 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
check-latest: false | |
cache: 'pnpm' | |
- run: npm i -g pnpm | |
- run: pnpm install | |
- run: pnpm lint | |
- run: pnpm build |