Skip to content

History ID and metadata processing improvements #1406

History ID and metadata processing improvements

History ID and metadata processing improvements #1406

Workflow file for this run

name: Build
on:
workflow_dispatch:
pull_request:
branches:
- "*"
push:
branches:
- "master"
- "hotfix-*"
jobs:
build:
name: "Build"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [14.x, 16.x]
steps:
- uses: actions/[email protected]
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- name: Cache Hermione Browsers
uses: actions/cache@v3
with:
key: "default"
path: |
~/hermione-headless-chrome
- name: yarn install
run: |
yarn install
- run: yarn workspace allure-playwright playwright install chromium --with-deps
- name: yarn build
run: |
yarn run build
- name: yarn test
run: |
yarn run test