Skip to content

refactor: Updated packages and changed test environment #35

refactor: Updated packages and changed test environment

refactor: Updated packages and changed test environment #35

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Test
on:
push:
branches: ['main']
pull_request:
branches: ['main']
jobs:
test-all:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.12.0] # Latest LTS
steps:
- uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install pnpm
uses: pnpm/action-setup@v3
with:
version: 8 # Latest major
run_install: false
- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Get installed Playwright version
id: playwright-version
run: echo "::set-output name=version::$(pnpm ls -r | grep playwright | sed 's/.* //')"
- uses: actions/cache@v3
name: Setup playwright cache
id: playwright-cache
with:
path: '~/.cache/ms-playwright'
key: '${{ runner.os }}-playwright-${{ steps.playwright-version.outputs.version }}'
restore-keys: |
${{ runner.os }}-playwright-
- name: Install Playwright's dependencies
if: steps.playwright-cache.outputs.cache-hit != 'true'
run: npx playwright install --with-deps
- name: Install dependencies
run: pnpm install --ignore-scripts
- name: Build Darkroom
run: pnpm build:darkroom
- name: Build Timeline
run: pnpm build:timeline
- name: Build safelight
run: pnpm build:safelight
- name: Test darkroom on Chromium
run: pnpm test:darkroom
- name: Test darkroom on Firefox
run: pnpm test:darkroom-firefox
- name: Test shared
run: pnpm test:shared
- name: Test timeline
run: pnpm test:timeline