8000 Merge pull request #49 from github/dependabot/npm_and_yarn/npm_and_yarn-bd18dc93ad · github/github-app-js-sample@0f74a8f · GitHub
[go: up one dir, main page]

Skip to content

Merge pull request #49 from github/dependabot/npm_and_yarn/npm_and_ya… #72

Merge pull request #49 from github/dependabot/npm_and_yarn/npm_and_ya…

Merge pull request #49 from github/dependabot/npm_and_yarn/npm_and_ya… #72

Workflow file for this run

name: Linting
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- run: npm install standard
- run: npm run lint
0