Skip to content
This repository has been archived by the owner on Oct 23, 2023. It is now read-only.

chore(deps): update actions/checkout action to v4 #1932

chore(deps): update actions/checkout action to v4

chore(deps): update actions/checkout action to v4 #1932

Workflow file for this run

name: Quality
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout branch
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
- name: Install
uses: ./.github/composite-actions/install
- name: Build packages
run: pnpm build
tests:
name: Tests
runs-on: ubuntu-latest
steps:
- name: Checkout branch
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
- name: Install
uses: ./.github/composite-actions/install
- name: Run tests
run: pnpm test
- name: Upload /preact coverage to Codecov
uses: codecov/codecov-action@v3
with:
flags: preact
- name: Upload /react coverage to Codecov
uses: codecov/codecov-action@v3
with:
flags: react
- name: Upload /solid coverage to Codecov
uses: codecov/codecov-action@v3
with:
flags: solid
- name: Upload /vue coverage to Codecov
uses: codecov/codecov-action@v3
with:
flags: vue
eslint:
name: ESLint
runs-on: ubuntu-latest
steps:
- name: Checkout branch
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
- name: Install
uses: ./.github/composite-actions/install
- name: Run ESLint
run: pnpm lint
types:
name: TypeScript
runs-on: ubuntu-latest
steps:
- name: Checkout branch
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
- name: Install
uses: ./.github/composite-actions/install
- name: Run typecheck
run: pnpm typecheck
prettier:
name: Prettier
runs-on: ubuntu-latest
steps:
- name: Checkout branch
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
- name: Install
uses: ./.github/composite-actions/install
- name: Run prettier
run: pnpm format:check