Skip to content

Commit

Permalink
Run validations on v5 branch
Browse files Browse the repository at this point in the history
  • Loading branch information
colincasey committed Apr 18, 2023
1 parent 49aa487 commit 04d4dae
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Actions-CI

on:
push:
branches: [master]
branches: [master, v5]
pull_request:
branches: [master]
branches: [master, v5]

jobs:
build:
Expand All @@ -23,3 +23,5 @@ jobs:
- name: Install dependencies and test
run: npm install
- run: npm test
- run: npm eslint
- run: npm prettier
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
"test:legacy": "npm run build -- --declaration false && vows test/*_test.js",
"typecheck": "tsc --noEmit",
"cover": "jest --coverage",
"eslint": "eslint --env node --ext .js .",
"eslint": "eslint --env node --ext .ts .",
"prettier": "prettier '**/*.{json,ts,yaml,md}'",
"format": "npm run eslint -- --fix"
},
Expand Down

0 comments on commit 04d4dae

Please sign in to comment.