Skip to content

Prepping for node-script 3.12.3 release (#1318) #1964

Prepping for node-script 3.12.3 release (#1318)

Prepping for node-script 3.12.3 release (#1318) #1964

Workflow file for this run

name: UI test
on:
push:
paths:
- 'cypress-common/**'
- 'ui/**'
- '.github/workflows/ui.yml'
jobs:
ui-test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 18
- name: Get Yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Cache Yarn dependencies
uses: actions/cache@v4
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-all-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-all-yarn-
- name: ui install
run: |
cd ui
yarn install
- name: ui test
env:
PROJEKTOR_TOKEN: ${{ secrets.PROJEKTOR_TOKEN }}
run: |
cd ui
yarn install
yarn test
- name: Projektor publish
if: failure() || success()
env:
PROJEKTOR_TOKEN: ${{ secrets.PROJEKTOR_TOKEN }}
run: |
cd ui
yarn projektor:jest:ci
ui-cypress-test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Install Cypress dependencies
run: |
sudo apt-get install xvfb libgtk2.0-0 libnotify-dev libgconf-2-4 libnss3 libxss1 libasound2
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 18
- name: Get Yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Cache Yarn dependencies
uses: actions/cache@v4
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-all-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-all-yarn-
- name: ui install
run: |
cd ui
yarn install
- name: cypress-common install
run: |
cd cypress-common
yarn install
- name: Increase file watchers
run: |
sudo sysctl fs.inotify.max_user_watches=1048576
- name: UI Cypress run
env:
PROJEKTOR_TOKEN: ${{ secrets.PROJEKTOR_TOKEN }}
run: |
cd ui
yarn cy:test:projektor:ci
- name: Projektor publish
if: success()
env:
PROJEKTOR_TOKEN: ${{ secrets.PROJEKTOR_TOKEN }}
run: |
cd ui
yarn projektor:cypress:no-attachments