Skip to content

[SID-1548] Configuration extension: share the configuration interface with React SDK #26

[SID-1548] Configuration extension: share the configuration interface with React SDK

[SID-1548] Configuration extension: share the configuration interface with React SDK #26

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [16.14.0]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
node-version-file: ".nvmrc"
registry-url: "https://registry.npmjs.org/"
- name: Install dependencies
run: yarn install
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Build
run: yarn build
- name: Unit tests
run: yarn test