diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1d40e62..a50e914 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,6 +9,6 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: - node-version: '10.x' + node-version: '12.x' - run: npm install - run: npm test -- --ci --coverage diff --git a/.github/workflows/commitlint.yml b/.github/workflows/commitlint.yml index 145fc3e..a96dbcc 100644 --- a/.github/workflows/commitlint.yml +++ b/.github/workflows/commitlint.yml @@ -26,3 +26,12 @@ jobs: - uses: ./ with: configFile: './.commitlintrc.yml' + commitlint-pulling-from-docker-hub: + runs-on: ubuntu-latest + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + steps: + - uses: actions/checkout@v2 + with: + fetch-depth: 0 + - uses: ./ diff --git a/Dockerfile b/Dockerfile index 939dea3..570dc9e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,6 @@ -FROM node:10 +FROM node:12-alpine3.9 + +RUN apk --no-cache add git COPY package*.json /