Skip to content

chore(deps): bump nanoid from 3.3.7 to 3.3.8 #67

chore(deps): bump nanoid from 3.3.7 to 3.3.8

chore(deps): bump nanoid from 3.3.7 to 3.3.8 #67

Workflow file for this run

name: build
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@main
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Select Node Version
uses: svierk/get-node-version@main
with:
package-manager: 'yarn'
- name: Install Dependencies
uses: borales/actions-yarn@v4
with:
cmd: install # will run `yarn install` command
- name: Check Prettier
run: yarn run prettier
- name: Check ESLint
run: yarn run lint
- name: LWC Unit Tests
run: yarn run test:unit
- name: Build Production Bundle
uses: borales/actions-yarn@v4
with:
cmd: build # will run `yarn build` command