We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b01d83e commit f8c3b5fCopy full SHA for f8c3b5f
.github/workflows/contract-testing.yml
@@ -13,14 +13,16 @@ jobs:
13
runs-on: ubuntu-18.04
14
steps:
15
- name: Project checkout
16
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
17
- name: Node.js Setup
18
uses: actions/setup-node@v2
19
- name: Installation of Node.js dependencies
20
run: npm ci
21
- name: Run contract test
22
run: npm run test:contract
23
- run: docker pull pactfoundation/pact-cli:latest
24
+ - name: work around permission issue
25
+ run: git config --global --add safe.directory /home/runner/work/front/front
26
- name: Publish contract test result
27
run: |
28
docker run --rm \
0 commit comments