Skip to content

VEES -1 | Refactor, add stylelint custom rule #12

VEES -1 | Refactor, add stylelint custom rule

VEES -1 | Refactor, add stylelint custom rule #12

Workflow file for this run

name: Lint & Build
on:
push:
branches:
- dev
- main
- stage
pull_request:
branches:
- dev
- main
- stage
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Cache dependencies
uses: actions/cache@v3
with:
path: node_modules
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install dependencies
run: yarn install
- name: Run lint
run: yarn lint
- name: Build application
run: yarn build