Skip to content

👷 chore(deps-dev)(deps-dev): Bump the dev-dependencies group with 14 updates #666

👷 chore(deps-dev)(deps-dev): Bump the dev-dependencies group with 14 updates

👷 chore(deps-dev)(deps-dev): Bump the dev-dependencies group with 14 updates #666

Workflow file for this run

name: CI
on:
push:
branches: [main]
tags:
- 'v*'
pull_request:
release:
types: [created]
permissions:
contents: read
packages: read
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
with:
node-version: ${{ matrix.node-version }}
cache: yarn
# Uncomment for monorepo Yarn v1
# cache-dependency-path: "**/yarn.lock"
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint
- name: Format
run: yarn format:check
- name: Validate package versions
run: bash scripts/versions-validate.sh
- name: Build packages
run: yarn build
- name: Run tests
run: yarn test
- name: Test browser package installation
run: yarn test:browser-install
- name: Test node package installation (without OpenFeature)
run: yarn test:node-install
- name: Test node package installation (with OpenFeature)
run: yarn test:node-install:with-of