Skip to content

Commit

Permalink
Merge branch 'master' into release_v1
Browse files Browse the repository at this point in the history
  • Loading branch information
twistedpair committed Jan 7, 2021
2 parents 9e1a6f2 + 833f4b1 commit b19c004
Show file tree
Hide file tree
Showing 4 changed files with 217 additions and 32 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/pr-workflow.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
on: [pull_request]
name: mabl

jobs:
test:
name: Mabl Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master

- name: Install dependencies
run: npm ci

- name: Run checks
run: npm run check

- name: Compile Typescript
run: npm run build

- name: Run Tests
run: npm test

- name: Run mabl tests against deployment
id: mabl-test-deployment
uses: ./
env:
MABL_API_KEY: ${{ secrets.MABL_API_KEY }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
application-id: l-j3VqIO6lLLOOEoFTPSxA-a
environment-id: rtb4kWD5LuTr2KxaHvwfaA-e
203 changes: 176 additions & 27 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mabl-github-deployments-action",
"version": "1.6.0",
"version": "1.7.0",
"description": "mabl github action for GitHub pipelines integration",
"main": "lib/index.js",
"scripts": {
Expand All @@ -17,8 +17,9 @@
"author": "mabl",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0",
"async-retry": "^1.2.3",
"axios": "^0.20.0",
"axios": "^0.21.1",
"cli-table3": "^0.5.1",
"moment": "^2.24.0"
},
Expand All @@ -32,7 +33,7 @@
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^30.7.3",
"eslint-plugin-no-null": "^1.0.2",
"mocha": "^8.2.0",
"mocha": "^8.2.1",
"prettier": "^2.1.2",
"typescript": "^4.0.3"
}
Expand Down
Loading

0 comments on commit b19c004

Please sign in to comment.