Skip to content

Remove deno lock file #314

Remove deno lock file

Remove deno lock file #314

Workflow file for this run

# syntax: https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions
name: Prettier
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
name: Format
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16'
- run: rm -f package.json
- run: rm -f package-lock.json
- run: npm init -y
- run: npm i -D @yandeu/prettier-config
- run: npm i -D prettier
- run: node node_modules/.bin/prettier --check src