Skip to content

Commit

Permalink
Merge pull request #41 from CMU-313/standard-js-tool
Browse files Browse the repository at this point in the history
Tool integration - Standard.JS
  • Loading branch information
philliparaujo authored Nov 1, 2024
2 parents a606a8f + a5d6a07 commit ba0d26f
Show file tree
Hide file tree
Showing 4 changed files with 10,633 additions and 541 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/standardjs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: StandardJS Lint

on:
pull_request:
branches:
- f24
- standard-js-tool
push:
branches:
- f24
- standard-js-tool

jobs:
lint:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 'lts/*'

- name: Install dependencies
run: npm install\
working-directory: ./install

- name: Run StandardJS
run: npx standard
Loading

0 comments on commit ba0d26f

Please sign in to comment.