Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 13 additions & 11 deletions .github/workflows/run-int-dev-checklist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,16 @@ jobs:
container: 'rockylinux:8'

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- name: Test NPM Install
id: test-npm-install
run: |
npm ci
- name: Polarity Integration Development Checklist
id: int-dev-checklist
uses: polarityio/polarity-integration-development-checklist@main
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v6
- uses: actions/setup-node@v4
with:
node-version: '18'
- name: Test NPM Install
id: test-npm-install
run: |
npm ci
- name: Polarity Integration Development Checklist
id: int-dev-checklist
uses: polarityio/polarity-integration-development-checklist@main
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
17 changes: 13 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,27 +8,36 @@
# Ignore Sublime Text Project Files
*.sublime-project
*.sublime-workspace
sftp-config.json


# Ignore Eclipse Project Information
*.settings
*.project
*.classpath
dependency-reduced-pom.xml


# Ignore Excel Files
*.xlsx

# Ignore local log files
*.log
test.js

# Ignore Generated HTML README Files
README.html

# Ignored installed NPM modules
node_modules/

# Ignored VsCode Project Info
# Ignore private keys
key/

#Ignore VSCode
*.history
*.vscode
.histoy
*.vscode
.vscode

#Other
legacy_wrapper.js
.DS_Store
Loading