-
Notifications
You must be signed in to change notification settings - Fork 2
57 lines (46 loc) · 1.27 KB
/
ci.yml
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
name: Optimizely Headless Form CI
on:
push:
branches:
- master
- develop
- feature/*
- bugfix/*
pull_request:
branches: [ "develop" ]
permissions:
contents: write
packages: write
id-token: write
env:
NPM_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
build:
name: Build, test, and publish
runs-on: windows-latest
env:
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
strategy:
matrix:
node-version: [16.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Setup dependencies
run: npm ci
- name: Run build SDK
run: npm run build --if-present
- name: Run unit test
run: npm test
- name: Apply Versioning
run: |
echo "running on branch" ${{env.BRANCH_NAME}}
${{ github.workspace}}/build/get-versionSuffix.ps1 ${{env.BRANCH_NAME}} ${{github.RUN_NUMBER}}
- name: Publish
run: npm run publish