Skip to content

Bump Yarn and dependency versions, remove husky #54

Bump Yarn and dependency versions, remove husky

Bump Yarn and dependency versions, remove husky #54

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: latest
- 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
- latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: git config --global core.autocrlf input
- 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: 20.x
- run: git config --global core.autocrlf input
- 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