Add missed changelog entry for fix in 0.11.0 release #70
This file contains 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: 16.x | |
- node-version: 18.x | |
status: "LTS" | |
- node-version: 20.x | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
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: Build /lib folder for Docker | |
if: ${{ matrix.status == 'LTS' && github.ref == 'refs/heads/master' }} | |
run: | |
npm run prepublishOnly | |
- 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/docker-langserver:latest | |
- name: Coveralls | |
uses: coverallsapp/github-action@master | |
if: ${{ matrix.status == 'LTS' && github.ref == 'refs/heads/master' }} | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} |