Skip to content

[FFL-2934] Add browser configuration fetchers #1380

[FFL-2934] Add browser configuration fetchers

[FFL-2934] Add browser configuration fetchers #1380

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: [24.x]
steps:
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
submodules: true
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.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 --immutable && yarn allow-scripts
- 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
- name: Test node package installation (with minimum OpenFeature)
run: OF_SERVER_SDK_VERSION=1.15.0 OF_CORE_VERSION=1.3.0 yarn test:node-install:with-of