Skip to content

chore(deps-dev): bump @typescript-eslint/eslint-plugin from 7.4.0 to 7.12.0 #597

chore(deps-dev): bump @typescript-eslint/eslint-plugin from 7.4.0 to 7.12.0

chore(deps-dev): bump @typescript-eslint/eslint-plugin from 7.4.0 to 7.12.0 #597

Workflow file for this run

name: Test
on:
pull_request:
push:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ '20', '21' ]
steps:
- uses: actions/checkout@v4
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: yarn
- run: yarn install --immutable
- run: yarn qa
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
validateBundling:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: corepack enable
- run: npm i -g @arethetypeswrong/cli
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: yarn
- run: yarn install --immutable
- run: attw --pack .
release:
needs:
- test
- validateBundling
uses: ./.github/workflows/release.yaml
secrets: inherit