Fix silly typo in latest change. bachLoadFn -> batchLoadFn #31
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: Release | |
on: [push] | |
env: | |
CI: true | |
jobs: | |
lint: | |
name: Lint codebase | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2.2.2 | |
name: Install pnpm | |
id: pnpm-install | |
with: | |
version: 8 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: "pnpm" | |
- name: Run PNPM install | |
run: pnpm install --frozen-lockfile | |
- name: Lint | |
run: pnpm lint | |
build: | |
name: Build, and test on Node ${{ matrix.node }} and ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
needs: lint | |
strategy: | |
matrix: | |
node: ["16.x", "18.x", "20.x"] | |
os: [ubuntu-latest] | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2.2.4 | |
name: Install pnpm | |
id: pnpm-install | |
with: | |
version: 8 | |
- name: Use Node ${{ matrix.node }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: "pnpm" | |
- name: Run PNPM install | |
run: pnpm install --frozen-lockfile | |
- name: Test | |
run: pnpm test:ci | |
- name: Build | |
run: pnpm build | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v1 | |
release: | |
timeout-minutes: 15 | |
runs-on: ubuntu-latest | |
if: github.ref == 'refs/heads/main' | |
needs: build | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: pnpm/action-setup@v2.2.2 | |
name: Install pnpm | |
id: pnpm-install | |
with: | |
version: 8 | |
- name: Install node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: "pnpm" | |
- name: Run PNPM install | |
run: pnpm install --frozen-lockfile | |
- name: Create and publish versions | |
uses: changesets/action@v1 | |
with: | |
title: "Release new version" | |
commit: "update version" | |
publish: pnpm publish:ci | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |