mirror of
https://github.com/wagoid/commitlint-github-action.git
synced 2025-11-07 16:06:56 +00:00
fix: revert action to use debian image
Somehow when using alpine image, github actions was not running the entrypoint
This commit is contained in:
parent
9379b32eb6
commit
33f8aa30dd
2 changed files with 3 additions and 3 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
FROM node:10-alpine
|
FROM node:10
|
||||||
|
|
||||||
COPY package*.json /
|
COPY package*.json /
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -11,13 +11,13 @@ name: Commitlint
|
||||||
on: [pull_request]
|
on: [pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
commitlint:
|
lint:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- uses: wagoid/commitlint-github-action@v1.0.0
|
- uses: wagoid/commitlint-github-action@v1.1.0
|
||||||
```
|
```
|
||||||
|
|
||||||
## Inputs
|
## Inputs
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue