Skip to content

Move imagica and pxl from gcui to gcui2 #190

Move imagica and pxl from gcui to gcui2

Move imagica and pxl from gcui to gcui2 #190

Workflow file for this run

---
name: JS CI tests
on: [push, pull_request]
jobs:
validate:
name: Validate config
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 14.x ]
env:
SCRAMBLER_SECRET: ${{ secrets.SCRAMBLER_SECRET }}
steps:
- name: Git checkout
uses: actions/checkout@v2
- name: Install scrambler tool
run: go install github.com/dbldots/scrambler@latest
- name: Add go bin path to PATH
run: echo "$HOME/go/bin" >> $GITHUB_PATH
- name: Test for scrambler command
run: scrambler help
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install yarn package manger (which we use instead of npm)
run: npm install -g yarn
- name: Run yarn install to bundle project
run: yarn install
- name: Run yarn test to validate structure of index.js
run: yarn test