Skip to content

ci: update workflow #70

ci: update workflow

ci: update workflow #70

Workflow file for this run

name: Continuous integration
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- run: deno task ci
analyze:
name: Analyze code
runs-on: ubuntu-latest
needs:
- lint

Check failure on line 24 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / Continuous integration

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 24, Col: 9): Job 'analyze' depends on unknown job 'lint'. .github/workflows/ci.yml (Line: 25, Col: 9): Job 'analyze' depends on unknown job 'format'.
- format
- tests
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup CodeQL
uses: github/codeql-action/init@v1
with:
languages: typescript
config-file: ./.github/codeql.yml
- name: Analyze code
uses: github/codeql-action/analyze@v1