Skip to content

chore(deps): lock file maintenance #673

chore(deps): lock file maintenance

chore(deps): lock file maintenance #673

Workflow file for this run

name: Pull Request
on:
pull_request:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.7
- uses: actions/setup-node@v4.0.2
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.1.7
with:
submodules: true
- uses: actions/setup-node@v4.0.2
with:
cache: yarn
check-latest: true
- run: yarn
- run: yarn build
coverage:
name: Test Coverage
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.7
with:
submodules: true
- uses: actions/setup-node@v4.0.2
with:
cache: yarn
check-latest: true
- run: yarn
- run: yarn build:frame
- run: yarn test
- uses: coverallsapp/github-action@643bc377ffa44ace6394b2b5d0d3950076de9f63 # v2.3.0
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.1.7
with:
submodules: true
- uses: actions/setup-node@v4.0.2
with:
cache: yarn
node-version: ${{ matrix.node }}
- run: yarn
- run: yarn build:frame
- run: yarn test