Skip to content

Chore/repo audit 2025 09 16 #15

Chore/repo audit 2025 09 16

Chore/repo audit 2025 09 16 #15

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Enable Corepack
run: corepack enable
- name: Setup Yarn 4
run: corepack prepare yarn@4 --activate
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint
- name: Test
run: yarn test
- name: Upload coverage
if: success()
uses: actions/upload-artifact@v4
with:
name: coverage-report
path: coverage