8000 Merge pull request #148 from github/karasowles-patch-1 · github/github-ospo@dbbf29e · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Merge pull request #148 from github/karasowles-patch-1 #352

Merge pull request #148 from github/karasowles-patch-1

Merge pull request #148 from github/karasowles-patch-1 #352

Workflow file for this run

name: CI
on:
push:
branches-ignore:
- "dependabot/**"
pull_request:
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: npm
- name: Install dependencies
run: npm ci
- name: Run Formatting checks
run: npm test
0