14811
Denoβ€’2y agoβ€’
1 reply
1481

Strange error after lint in github actions

for a some reason after:
- name: Run linter
        run: deno lint

I get error that says Error: Process completed with exit code 1.

my workflow github action file:
name: Deno tests

on: [push, pull_request]

permissions:
  contents: read

jobs:
  test:
    runs-on: ubuntu-latest

    steps:
      - name: Setup repo
        uses: actions/checkout@v3

      - name: Setup Deno
        # uses: denoland/setup-deno@v1
        uses: denoland/setup-deno@61fe2df320078202e33d7d5ad347e7dcfa0e8f31  # v1.1.2
        with:
          deno-version: v1.x

      # Uncomment this step to verify the use of 'deno fmt' on each commit.
      # - name: Verify formatting
      #   run: deno fmt --check

      - name: Run linter
        run: deno lint

      - name: Run tests
        run: deno test -A


https://github.com/Rnbsov/Omnivore-Telegram-Bot/actions/runs/8129066025/job/22215706030
GitHub
Telegram bot to help you with your findings πŸš€. Contribute to Rnbsov/Omnivore-Telegram-Bot development by creating an account on GitHub.
πŸ§ͺ Test for parseUrls and Github actions for running deno test Β· Rnb...
Was this page helpful?