Skip to content
This repository has been archived by the owner on Nov 13, 2024. It is now read-only.

Update authpswd.md to make it clear not to use authpswd #20

Update authpswd.md to make it clear not to use authpswd

Update authpswd.md to make it clear not to use authpswd #20

Workflow file for this run

name: Lint and format
on:
push:
pull_request:
workflow_dispatch:
jobs:
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: denoland/setup-deno@v1
with:
deno-version: 2.0.0-rc.7
- run: deno fmt --check .
continue-on-error: true
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: denoland/setup-deno@v1
with:
deno-version: 2.0.0-rc.7
- run: deno lint .
continue-on-error: true