build: use npm pack
tarball for local examples and testing instead of .local
#1904
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: CI | |
on: [push, pull_request] | |
env: | |
HUSKY: 0 | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22.x | |
# Using `install` instead of `ci` because integrity checks for `npm pack` tarballs differ by platform | |
- run: npm install | |
- run: npm run lint | |
- run: npm run docs:diff | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: [16.x, 18.x, 20.x, 22.x] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: npm | |
# Using `install` instead of `ci` because integrity checks for `npm pack` tarballs differ by platform | |
- run: npm install | |
- run: npm run test | |
- run: npm run test:node |