Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Proposed v2.0.2 rewrite using google-spreadsheet@3.1.15 #31

Open
wants to merge 23 commits into
base: master
Choose a base branch
from
Open
Changes from 2 commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
8b5ef85
Update to google-spreadsheet @ 3.1.15
johnbeech Feb 20, 2021
9a5e7ac
Software Removed and rebuilt the package-lock file.
johnbeech Feb 20, 2021
0e6f4d7
Maintenance Created .github/workflows/pr-check.yml from template.
johnbeech Feb 20, 2021
fa21b74
Merge pull request #2 from connected-web/maintenance-jumper-add-pr-check
johnbeech Feb 20, 2021
71163fe
Merge pull request #1 from connected-web/software-jumper-rebuild
johnbeech Feb 20, 2021
1866fae
Update README with new goals
johnbeech Feb 20, 2021
434624d
Remove travis CI file
johnbeech Feb 20, 2021
6b13efa
Add standard js linter and commands (#3)
johnbeech Feb 20, 2021
41a5635
Fix linting and update tests to linter friendly chai (#4)
johnbeech Feb 20, 2021
430faf4
Remove .eslintrc file
johnbeech Feb 20, 2021
a87f3af
Remove .eslintrc file
johnbeech Feb 20, 2021
b6d26ac
Test for reading credentials from local fs or environment variable
johnbeech Feb 20, 2021
a58a20a
Map repository secret to environment for test command
johnbeech Feb 20, 2021
aad31d7
Switch priority of credential test based on input
johnbeech Feb 20, 2021
e61a6b1
Stub test for Film Spreadsheet to JSON
johnbeech Feb 20, 2021
fe165b1
Film spreadsheet integration (#5)
johnbeech Feb 20, 2021
eb3f1f9
Clean up CHANGELOG.md
johnbeech Feb 20, 2021
dfe0af4
Bump version to 2.0.0
johnbeech Feb 20, 2021
9c63646
Fix commander integration after upgrade to 7.1.0
johnbeech Feb 20, 2021
857c9db
Add test around allWorksheets: true option
johnbeech Feb 21, 2021
6d97c56
Prepare v2.0.1 release
johnbeech Feb 21, 2021
a6a49fa
Add guard for parsing worksheets that don't contain cells; i.e. charts
johnbeech Feb 21, 2021
b3ec323
Prepare v2.0.2 for release
johnbeech Feb 21, 2021
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
27 changes: 27 additions & 0 deletions .github/workflows/pr-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Check PR
on:
pull_request:
branches:
- master
jobs:
test:
name: Linting and Testing
runs-on: ubuntu-latest

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

- name: Use Node JS LTS
uses: actions/setup-node@v1
with:
node-version: 12.x

- name: Install npm dependencies
run: npm install

- name: Run build steps
run: npm build -s

- name: Run default tests
run: npm test -s