Skip to content

chore: update husky and lint-staged (#6785) #3106

chore: update husky and lint-staged (#6785)

chore: update husky and lint-staged (#6785) #3106

Workflow file for this run

name: CI
on:
push:
branches:
- master
- bs3-dev
- bs4-dev
pull_request:
branches:
- master
- bs3-dev
- bs4-dev
permissions:
contents: read
jobs:
ci:
name: CI
runs-on: ${{ matrix.os }}
strategy:
matrix:
browser: [ChromeHeadless, FirefoxHeadless]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: yarn
- name: Update Brew (macOS)
if: matrix.os == 'macOS-latest'
run: brew update
- name: Install Chrome (macOS)
if: matrix.os == 'macOS-latest' && matrix.browser == 'ChromeHeadless'
run: brew install --cask google-chrome
- name: Install Firefox (macOS)
if: matrix.os == 'macOS-latest' && matrix.browser == 'FirefoxHeadless'
run: brew install --cask firefox
- name: Install Dependencies
run: yarn bootstrap
env:
YARN_CACHE_FOLDER: .cache/yarn
- name: Run Tests
run: yarn test
env:
BROWSER: ${{ matrix.browser }}
- name: Codecov
uses: codecov/codecov-action@v3
- name: Build Project
run: yarn build