Skip to content

Bump @types/semver from 7.7.0 to 7.7.1 #167

Bump @types/semver from 7.7.0 to 7.7.1

Bump @types/semver from 7.7.0 to 7.7.1 #167

Workflow file for this run

name: CI
on:
pull_request:
branches: [dev]
paths-ignore:
- '**.md'
permissions:
contents: read
env:
NODE_VERSION: 24.6.0
YARN_VERSION: 4.9.3
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: ./.github/setup
with:
node-version: ${{ env.NODE_VERSION }}
yarn-version: ${{ env.YARN_VERSION }}
- name: Check formatting
run: yarn check
- name: Build shared packages
run: yarn build:shared
- name: Unit tests with coverage
run: yarn test --coverage
- name: Build
run: yarn build
- name: Check for security vulnerabilities
run: yarn npm audit