Skip to content

Commit

Permalink
Merge pull request #87 from mifi/master
Browse files Browse the repository at this point in the history
Refactor and async/await
  • Loading branch information
mifi authored Jan 20, 2021
2 parents 9bb622e + 707796f commit 7fa2c50
Show file tree
Hide file tree
Showing 43 changed files with 5,294 additions and 4,831 deletions.
11 changes: 0 additions & 11 deletions .babelrc

This file was deleted.

1 change: 0 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
node_modules/
lib/
fixture/
42 changes: 0 additions & 42 deletions .eslintrc

This file was deleted.

3 changes: 0 additions & 3 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@ module.exports = {
"jest": true,
"node": true
},
"globals": {
"GENTLY": true
},
"rules": {
"no-multi-spaces": 0,
"comma-dangle": [
Expand Down
62 changes: 62 additions & 0 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
name: Run all tests

on:
push:
branches:
- master

jobs:
test:
runs-on: ubuntu-latest

strategy:
# Integration tests are not yet ready to run in parallel
max-parallel: 1
matrix:
node: ['10', '12', '14']

steps:
- uses: actions/checkout@v2

- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}

- run: yarn
- run: npm run lint
- run: npm test
env:
TRANSLOADIT_KEY: ${{ secrets.TRANSLOADIT_KEY }}
TRANSLOADIT_SECRET: ${{ secrets.TRANSLOADIT_SECRET }}

- name: Generate the badge from the json-summary
run: node test/generate-coverage-badge.js coverage/coverage-summary.json

- name: Move HTML report and badge to the correct location
run: |
mv coverage/lcov-report static-build
mv coverage-badge.svg static-build/
# *** BEGIN PUBLISH STATIC SITE STEPS ***
# Use the standard checkout action to check out the destination repo to a separate directory
# See https://github.com/mifi/github-action-push-static
- uses: actions/checkout@v2
with:
ssh-key: ${{ secrets.COVERAGE_REPO_SSH_PRIVATE_KEY }}
repository: transloadit/node-sdk-coverage
path: static-files-destination

# Push coverage data
- if: matrix.node == '10'
run: |
git config --global user.name github-actions
git config --global user.email [email protected]
# Remove existing files:
rm -rf static-files-destination/*
# Replace with new files:
cp -a static-build/* static-files-destination/
cd static-files-destination
git add .
# git diff-index: to avoid doing the git commit failing if there are no changes to be commit
git diff-index --quiet HEAD || git commit --message 'Static file updates'
git push
22 changes: 22 additions & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Pull request tests

on: [pull_request]

jobs:
test:
runs-on: ubuntu-latest

strategy:
matrix:
node: ['10', '12', '14']

steps:
- uses: actions/checkout@v2

- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}

- run: yarn
- run: npm run lint
- run: npm run test-unit
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ sample.js

npm-debug.log
env.sh
/coverage
15 changes: 0 additions & 15 deletions .travis.yml

This file was deleted.

Loading

0 comments on commit 7fa2c50

Please sign in to comment.