Fixed broken package.json, updated all deps and react example #190
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: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
include: | |
- node: 16 | |
npm: 8 | |
- node: 18 | |
npm: 9 | |
- node: 20 | |
npm: 10 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up node ${{ matrix.node }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Update npm | |
run: npm install -g npm@^${{ matrix.npm }} | |
- name: Set up cache | |
uses: actions/cache@v4 | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-node-${{ matrix.node }}-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node-${{ matrix.node }}- | |
${{ runner.os }}-node- | |
${{ runner.os }}- | |
- name: Install library dependencies | |
run: npm ci | |
- name: Install examples/react-17 dependencies | |
run: cd examples/react-17 && npm ci | |
- name: Install examples/nextjs dependencies | |
run: cd examples/nextjs && npm ci | |
- name: Install examples/typescript dependencies | |
run: cd examples/typescript && npm ci | |
- name: Lint | |
uses: wearerequired/lint-action@v2 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
prettier: true | |
eslint: true | |
eslint_args: '--max-warnings 0' | |
eslint_extensions: js,jsx,ts,tsx | |
- name: Build library | |
run: npm run build | |
- name: Build examples/react-17 | |
run: cd examples/react-17 && npm run build | |
- name: Build examples/nextjs | |
run: cd examples/nextjs && npm run build | |
- name: Build examples/typescript | |
run: cd examples/typescript && npm run build | |
- name: Test | |
run: npm run test |