Fix #127 Allow Dockerfiles with invalid heredocs to be validated #104
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Node.js Builds | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - node-version: 18.x | |
| - node-version: 20.x | |
| status: "LTS" | |
| - node-version: 22.x | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Build | |
| run: | | |
| npm install | |
| npm run build | |
| - name: Package | |
| run: npm pack | |
| - name: Test | |
| run: npm run nyc-ci | |
| - name: Login to DockerHub | |
| uses: docker/login-action@v2 | |
| if: ${{ matrix.status == 'LTS' && github.ref == 'refs/heads/master' }} | |
| with: | |
| username: ${{ secrets.DOCKERHUB_USERNAME }} | |
| password: ${{ secrets.DOCKERHUB_TOKEN }} | |
| - name: Build and push to DockerHub | |
| id: docker_build | |
| uses: docker/build-push-action@v4 | |
| if: ${{ matrix.status == 'LTS' && github.ref == 'refs/heads/master' }} | |
| with: | |
| context: . | |
| push: true | |
| tags: rcjsuen/dockerfile-utils:latest | |
| - name: Coveralls | |
| uses: coverallsapp/github-action@master | |
| if: ${{ matrix.status == 'LTS' && github.ref == 'refs/heads/master' }} | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} |