Skip to content

deactivate pre-commit hooks for pipeline #70

deactivate pre-commit hooks for pipeline

deactivate pre-commit hooks for pipeline #70

name: Build and Test
on:
push:
pull_request:
branches: ['main']
env:
HUSKY: 0
jobs:
build-and-test:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎
uses: actions/checkout@v4
- name: Setup Node.js ⚙️
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install 🕝
run: yarn --immutable
- name: Lint 🧐
run: yarn lint
- name: Build 🔧
run: yarn build
- name: Test 🧪
run: yarn test