Skip to content

oxc-migration

oxc-migration #606

Workflow file for this run

name: General Validity
on: ["push"]
jobs:
static-code-validation:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
- run: corepack enable
- name: yarn install
run: yarn --immutable
shell: bash
- name: Static code validation
run: yarn static-code-validation
shell: bash
test:
runs-on: ubuntu-24.04
strategy:
matrix:
node: [20, 22, 24]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: corepack enable
- name: yarn install
run: yarn --immutable
shell: bash
- name: test + coverage
run: yarn test-coverage
shell: bash
- name: Coveralls GitHub Action
uses: coverallsapp/[email protected]
# env:
# NODE_COVERALLS_DEBUG: 1
with:
github-token: ${{ secrets.github_token }}
build:
runs-on: ubuntu-24.04
needs: [lint, test]

Check failure on line 54 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / General Validity

Invalid workflow file

The workflow is not valid. .github/workflows/main.yml (Line: 54, Col: 13): Job 'build' depends on unknown job 'lint'.
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
- run: corepack enable
- name: yarn install
run: yarn --immutable
shell: bash
- name: build
run: yarn build
shell: bash