Skip to content

chore(deps): update coverallsapp/github-action action to v2.3.3 #756

chore(deps): update coverallsapp/github-action action to v2.3.3

chore(deps): update coverallsapp/github-action action to v2.3.3 #756

Workflow file for this run

name: Pull Request
on:
pull_request:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.2.1
- uses: actions/setup-node@v4.0.4
with:
cache: yarn
check-latest: true
- run: yarn
- run: yarn lint --no-fix
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.2.1
with:
submodules: true
- uses: actions/setup-node@v4.0.4
with:
cache: yarn
check-latest: true
- run: yarn
- run: yarn build
coverage:
name: Test Coverage
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.2.1
with:
submodules: true
- uses: actions/setup-node@v4.0.4
with:
cache: yarn
check-latest: true
- run: yarn
- run: yarn build:frame
- run: yarn test
- uses: coverallsapp/github-action@4cdef0b2dbe0c9aa26bed48edb868db738625e79 # v2.3.3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
test:
name: Test LTS
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node:
- 18
steps:
- uses: actions/checkout@v4.2.1
with:
submodules: true
- uses: actions/setup-node@v4.0.4
with:
cache: yarn
node-version: ${{ matrix.node }}
- run: yarn
- run: yarn build:frame
- run: yarn test