Skip to content

Install CLI @PROD

Install CLI @PROD #42

Workflow file for this run

name: Install CLI @PROD
on:
# push:
# branches: [ main ]
# pull_request:
# branches:
# - "main"
workflow_dispatch:
workflow_run:
workflows: ["Deploy to PROD"]
types:
- completed
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: lts/Hydrogen
- name: Cache node modules
id: cache-npm
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Install Supernova CLI dependency
run: npm install --g @supernovaio/cli
- name: Check Supernova version
run: supernova --version
- name: Describe design system
run: >
supernova describe-design-system
--apiKey="${{ secrets.SN_API_KEY_PROD }}"
--designSystemId="105994"
- name: Describe workspaces
run: >
supernova describe-workspaces
--apiKey="${{ secrets.SN_API_KEY_PROD }}"
- name: Publish documentation
run: >
supernova publish-documentation
--apiKey="${{ secrets.SN_API_KEY_PROD }}"
--designSystemId="105994"
- name: Synchronize tokens with Supernova
run: >
supernova sync-tokens
--apiKey="${{ secrets.SN_API_KEY_PROD }}"
--designSystemId="105994"
--tokenFilePath="${{ github.workspace }}/test-resources/figma-tokens/single-file-sync/tokens.json"
--configFilePath="${{ github.workspace }}/test-resources/figma-tokens/single-file-sync/supernova.settings.json"
- name: Build local exporter
run: cd ${{ github.workspace }}/test-resources/exporter && npm i && npm run build
- name: Run local exporter with Supernova
run: >
supernova run-local-exporter
--apiKey="${{ secrets.SN_API_KEY_PROD }}"
--designSystemId="105994"
--brandId="69a8187b-f3d3-4b0f-a892-90afe6a92dcc"
--exporterDir="${{ github.workspace }}/test-resources/exporter"
--outputDir="${{ github.workspace }}/test-resources/exporter-output"
--allowOverridingOutput
- name: Archive exporter artifacts
uses: actions/upload-artifact@v3
with:
name: exporter-output
path: ${{ github.workspace }}/test-resources/exporter-output
retention-days: 5
- name: Assert list of exported files
uses: GuillaumeFalourd/[email protected]
with:
command_line: ls -R ${{ github.workspace }}/test-resources/exporter-output | grep .css
assert_file_path: ${{ github.workspace }}/test-resources/exporter-output-files.txt
expected_result: PASSED