2023-10-11 19:06:43 +00:00
|
|
|
# Copyright 2023 Signal Messenger, LLC
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
name: Stories
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- development
|
|
|
|
- main
|
|
|
|
- '[0-9]+.[0-9]+.x'
|
|
|
|
pull_request:
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest-8-cores
|
|
|
|
timeout-minutes: 30
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions/setup-node@v3
|
|
|
|
with:
|
2024-01-24 00:11:12 +00:00
|
|
|
node-version: '18.18.2'
|
2023-10-11 19:06:43 +00:00
|
|
|
cache: 'yarn'
|
2024-01-24 00:11:12 +00:00
|
|
|
- name: Install global dependencies
|
|
|
|
run: npm install -g yarn@1.22.10 npm@10.2.5
|
2023-12-09 00:56:44 +00:00
|
|
|
- name: Cache Desktop node_modules
|
|
|
|
id: cache-desktop-modules
|
|
|
|
uses: actions/cache@v3
|
|
|
|
with:
|
|
|
|
path: node_modules
|
|
|
|
key: ${{ runner.os }}-${{ hashFiles('package.json', 'yarn.lock', 'patches/**') }}
|
|
|
|
- name: Install Desktop node_modules
|
|
|
|
if: steps.cache-desktop-modules.outputs.cache-hit != 'true'
|
|
|
|
run: yarn install --frozen-lockfile --prefer-offline
|
|
|
|
env:
|
|
|
|
CHILD_CONCURRENCY: 1
|
|
|
|
NPM_CONFIG_LOGLEVEL: verbose
|
2023-10-11 19:06:43 +00:00
|
|
|
- run: yarn build:storybook
|
2023-12-09 00:56:44 +00:00
|
|
|
- run: npx playwright install chromium
|
2023-10-11 19:06:43 +00:00
|
|
|
- run: yarn run-p --race test:storybook:serve test:storybook:test
|