Skip to content

Run the CI on all pushes and pull requests #62

Run the CI on all pushes and pull requests

Run the CI on all pushes and pull requests #62

Workflow file for this run

name: CI
on:
- push
- pull_request
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
DEFAULT_NODE_VERSION: 23.x
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ env.DEFAULT_NODE_VERSION }}
- uses: actions/cache@v4
with:
path: .yarn
key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}
- run: corepack enable
- run: yarn install --immutable
- run: yarn run lint
node:
needs: lint
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 18.x
- 20.x
- 22.x
- 23.x
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- uses: actions/cache@v4
with:
path: .yarn
key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}
- run: corepack enable
- run: yarn install --immutable
- run: yarn run build
- run: yarn run test
- uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.github_token }}
flag-name: run-${{ matrix.node-version }}
parallel: true
browser:
needs: lint
runs-on: ubuntu-latest
strategy:
matrix:
browser:
- firefox
- chromium
- webkit
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ env.DEFAULT_NODE_VERSION }}
- uses: actions/cache@v4
with:
path: .yarn
key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}
- run: corepack enable
- run: yarn install --immutable
- run: yarn playwright install --with-deps ${{ matrix.browser }}
- run: yarn playwright test --browser ${{ matrix.browser }}
coveralls:
needs:
- node
runs-on: ubuntu-latest
steps:
- name: Consolidate test coverage from different jobs
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.github_token }}
parallel-finished: true