Skip to content

build(deps-dev): bump vite from 4.2.3 to 4.5.2 (#39) #66

build(deps-dev): bump vite from 4.2.3 to 4.5.2 (#39)

build(deps-dev): bump vite from 4.2.3 to 4.5.2 (#39) #66

Workflow file for this run

name: code-quality
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [18]
steps:
- name: Checkout 🛎
uses: actions/checkout@master
- name: Setup node env 🏗
uses: actions/[email protected]
with:
node-version: ${{ matrix.node }}
check-latest: true
- name: Cache node_modules 📦
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies 👨🏻‍💻
run: npm i
- name: Build project
run: npm run build
- name: Test project 🫣
run: npm run test
- name: Run lint 👀
run: npm run lint
- name: Run format 💎
run: npm run format:check