chore(deps-dev): bump @types/react from 18.2.19 to 18.2.20 #538
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: Build and deploy | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Lint commit messages | |
uses: wagoid/commitlint-github-action@v5 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 14.x | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: ^5.5.4 | |
- name: Install | |
run: pnpm install --frozen-lockfile=false | |
- name: Build | |
run: pnpm run build | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Lint | |
run: pnpm run lint | |
- name: Run unit tests | |
run: pnpm test | |
- name: Build documentation | |
run: pnpm run docs | |
- name: Upload code coverage to codecov | |
uses: codecov/codecov-action@v1 | |
publish: | |
needs: build | |
if: github.event_name == 'push' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 14.x | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: ^5.5.4 | |
- name: Install | |
run: pnpm install --frozen-lockfile=false | |
- name: Build | |
run: pnpm run build | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build documentation | |
run: pnpm run docs | |
- name: Set git credentials | |
run: | | |
git config --local user.email "action@github.com" | |
git config --local user.name "GitHub Action" | |
- name: Set npm credentials | |
run: echo //registry.npmjs.org/:_authToken=$NPM_AUTH_TOKEN > ~/.npmrc | |
env: | |
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} | |
- name: Publish | |
uses: cycjimmy/semantic-release-action@v3 | |
with: | |
semantic_version: 17 | |
branches: main | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |