1481
1481
DDeno
Created by 1481 on 3/6/2024 in #help
Strange error after lint in github actions
for a some reason after:
- name: Run linter
run: deno lint
- 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
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
2 replies
DDeno
Created by 1481 on 1/7/2024 in #help
How to set env variable for preview branch?
I'm getting just errors that they are missing
2 replies