Skip to content

build(deps-dev): bump lint-staged from 15.2.2 to 15.2.7 #223

build(deps-dev): bump lint-staged from 15.2.2 to 15.2.7

build(deps-dev): bump lint-staged from 15.2.2 to 15.2.7 #223

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: ci-build
on:
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20]
steps:
- name: Checkout Code
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Set Node Version ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: yarn
- name: Lint
run: yarn lint
- name: Unit Test
run: yarn test
- name: Dry Run Version Bump
run: yarn release:dry-run