Skip to content

Merge pull request #203 from wojtekmaj/vitest #4

Merge pull request #203 from wojtekmaj/vitest

Merge pull request #203 from wojtekmaj/vitest #4

Workflow file for this run

name: CI
on:
push:
branches: ["*"]
pull_request:
branches: [master]
env:
HUSKY: 0
jobs:
lint:
name: Lint
runs-on: ubuntu-24.04-arm
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Use Node.js
uses: actions/setup-node@v6
with:
node-version: "24"
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run lint
run: yarn lint
unit:
name: Unit tests
runs-on: ubuntu-24.04-arm
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Use Node.js
uses: actions/setup-node@v6
with:
node-version: "24"
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run tests
run: yarn test
build:
name: Build
runs-on: ubuntu-24.04-arm
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Use Node.js
uses: actions/setup-node@v6
with:
node-version: "24"
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run build
run: yarn build