Skip to content

fix: styles and lint-staged setup #3

fix: styles and lint-staged setup

fix: styles and lint-staged setup #3

Workflow file for this run

name: On push jobs
on:
push:
branches: [master, dev, test]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
run: yarn install
- name: Lint
run: yarn lint
build:
needs: [lint]
strategy:
matrix:
version: [18.x]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.version }}
- name: Install dependencies
run: yarn install
- name: Building project
run: yarn build