Skip to content

Commit 33f8aa3

Browse files
committed
fix: revert action to use debian image
Somehow when using alpine image, github actions was not running the entrypoint
1 parent 9379b32 commit 33f8aa3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:10-alpine
1+
FROM node:10
22

33
COPY package*.json /
44

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ name: Commitlint
1111
on: [pull_request]
1212

1313
jobs:
14-
commitlint:
14+
lint:
1515
runs-on: ubuntu-latest
1616
env:
1717
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1818
steps:
1919
- uses: actions/checkout@v1
20-
- uses: wagoid/commitlint-github-action@v1.0.0
20+
- uses: wagoid/commitlint-github-action@v1.1.0
2121
```
2222
2323
## Inputs

0 commit comments

Comments
 (0)