signal-desktop/.github/workflows/stories.yml

38 lines
1.1 KiB
YAML
Raw Normal View History

# 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-06-27 20:25:36 +00:00
node-version: '20.14.0'
2024-06-24 20:14:32 +00:00
cache: 'npm'
- name: Install global dependencies
2024-06-24 20:14:32 +00:00
run: npm install -g npm@10.2.5
- name: Cache Desktop node_modules
id: cache-desktop-modules
uses: actions/cache@v3
with:
path: node_modules
2024-06-24 20:14:32 +00:00
key: ${{ runner.os }}-${{ hashFiles('package.json', 'package-lock.json', 'patches/**') }}
- name: Install Desktop node_modules
if: steps.cache-desktop-modules.outputs.cache-hit != 'true'
run: npm ci
env:
CHILD_CONCURRENCY: 1
NPM_CONFIG_LOGLEVEL: verbose
2024-06-24 20:14:32 +00:00
- run: npm run build:storybook
- run: npx playwright install chromium
2024-06-24 20:14:32 +00:00
- run: ./node_modules/.bin/run-p --race test:storybook:serve test:storybook:test