-
Notifications
You must be signed in to change notification settings - Fork 2
66 lines (50 loc) · 1.57 KB
/
Copy pathci.yaml
File metadata and controls
66 lines (50 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
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