This repository has been archived by the owner on Jan 16, 2025. It is now read-only.
Applitools Storybook #130
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Applitools Storybook | |
on: | |
schedule: | |
- cron: "0 0 * * *" | |
env: | |
APPLITOOLS_APP_NAME: Superset | |
APPLITOOLS_API_KEY: ${{ secrets.APPLITOOLS_API_KEY }} | |
APPLITOOLS_BATCH_ID: ${{ github.sha }} | |
APPLITOOLS_BATCH_NAME: Superset Storybook | |
jobs: | |
config: | |
runs-on: "ubuntu-latest" | |
outputs: | |
has-secrets: ${{ steps.check.outputs.has-secrets }} | |
steps: | |
- name: "Check for secrets" | |
id: check | |
shell: bash | |
run: | | |
if [ -n "${{ (secrets.APPLITOOLS_API_KEY != '' && secrets.APPLITOOLS_API_KEY != '') || '' }}" ]; then | |
echo "has-secrets=1" >> "$GITHUB_OUTPUT" | |
fi | |
cron: | |
needs: config | |
if: needs.config.outputs.has-secrets | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
node: [16] | |
steps: | |
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )" | |
uses: actions/checkout@v3 | |
with: | |
persist-credentials: false | |
submodules: recursive | |
ref: master | |
- name: Set up Node.js | |
uses: actions/[email protected] | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Install eyes-storybook dependencies | |
uses: ./.github/actions/cached-dependencies | |
with: | |
run: eyes-storybook-dependencies | |
- name: Install NPM dependencies | |
uses: ./.github/actions/cached-dependencies | |
with: | |
run: npm-install | |
- name: Run Applitools Eyes-Storybook | |
working-directory: ./superset-frontend | |
run: npx eyes-storybook -u https://superset-storybook.netlify.app/ |