Skip to content

chore(deps): update eslint monorepo to v9.39.3 (#68) #308

chore(deps): update eslint monorepo to v9.39.3 (#68)

chore(deps): update eslint monorepo to v9.39.3 (#68) #308

Workflow file for this run

name: CI
on: [push]
env:
CI_BRANCH: ${{ github.ref_name }}
permissions:
contents: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: '24'
- name: Install dependencies
run: npm ci
- name: Check Code Formatting
run: npm run format
- name: Run ESLint
run: npm run lint
- name: Run Unit Tests
run: npm run unit-test
- name: Semantic Release (Dry Run)
if: github.ref != 'refs/heads/main'
run: npm run semantic-release-dry
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
release:
runs-on: ubuntu-latest
needs: build
if: github.ref == 'refs/heads/main'
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: '24'
- name: Install dependencies
run: npm ci
- name: Release
run: npm run semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}