Skip to content

chore(deps-dev): bump the all group with 9 updates (#358) #548

chore(deps-dev): bump the all group with 9 updates (#358)

chore(deps-dev): bump the all group with 9 updates (#358) #548

Workflow file for this run

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@v4
with:
fetch-depth: 0
- name: Lint PR title
if: ${{ github.event_name == 'pull_request' }}
uses: amannn/action-semantic-pull-request@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Install
run: pnpm install --frozen-lockfile=false
- name: Build
run: pnpm run build
- name: Build documentation
run: |
pnpm run docs
touch ./docs/.nojekyll
- name: Lint
run: pnpm run lint
- name: Run unit tests
run: pnpm run test:unit
- name: Upload code coverage to codecov
uses: codecov/codecov-action@v4
- name: Run integration tests
run: pnpm run test:integration
- name: Check package output
run: pnpx pkg-ok
publish:
needs: build
if: github.event_name == 'push'
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Install
run: pnpm install --frozen-lockfile=false
- name: Build
run: pnpm run build
- name: Set git credentials
run: |
git config --local user.email "[email protected]"
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@v4
with:
semantic_version: 19
branches: main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}