Skip to content

Add start and stop methods to history interfaces #104

Add start and stop methods to history interfaces

Add start and stop methods to history interfaces #104

Workflow file for this run

name: Main
on:
workflow_dispatch:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
cache: yarn
- name: Install project dependencies
run: yarn install
- name: Lint
run: yarn lint
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
cache: yarn
- name: Install project dependencies
run: yarn install
- name: Run build script
run: yarn build
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
cache: yarn
- name: Install project dependencies
run: yarn install
- name: Install chromium
run: yarn playwright install --with-deps chromium
- name: Run tests
run: yarn test
# - name: Upload coverage to codecov
# uses: codecov/codecov-action@v4
# if: always()
# with:
# token: ${{ secrets.CODECOV_TOKEN }}
# file: coverage/clover.xml
release:
name: Release
runs-on: ubuntu-latest
timeout-minutes: 10
needs:
- lint
- build
- test
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
cache: yarn
- name: Install project dependencies
run: yarn install
- name: Create Release Pull Request or Publish to npm
id: changesets
uses: changesets/action@v1
with:
publish: yarn changeset publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}