name: CI on: [push, pull_request] jobs: ci: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v2-beta with: node-version: 12 registry-url: https://registry.npmjs.org/ - name: Get NodeJS Version id: nodeversion run: | echo "::set-output name=version::$(node --version)" - name: Restore node_modules cache id: cache-node-modules uses: actions/cache@v2 with: path: node_modules key: ${{ runner.os }}-${{ steps.nodeversion.outputs.version }}-${{ hashFiles('npm-shrinkwrap.json') }} - name: Install dependencies if: steps.cache-node-modules.outputs.cache-hit != 'true' run: npm ci - name: Test run: npm run test-with-coverage - name: Lint run: npm run eslint - name: Docker login if: (github.ref == 'refs/heads/dev' || startsWith(github.ref, 'refs/tags/')) && github.event_name == 'push' run: echo ${{ secrets.DOCKER_KEY }} | docker login -u koenkk --password-stdin - name: Docker setup if: (github.ref == 'refs/heads/dev' || startsWith(github.ref, 'refs/tags/')) && github.event_name == 'push' run: | sudo wget -O /usr/local/bin/buildx https://github.com/docker/buildx/releases/download/v0.3.1/buildx-v0.3.1.linux-amd64 sudo chmod a+x /usr/local/bin/buildx docker run --rm --privileged hypriot/qemu-register:v2.7.0 buildx create --use buildx ls - name: Docker build dev if: github.ref == 'refs/heads/dev' && github.event_name == 'push' run: | buildx build \ --build-arg COMMIT=$(git rev-parse --short HEAD) \ --platform linux/arm64/v8,linux/amd64,linux/arm/v6,linux/arm/v7,linux/386 \ -f docker/Dockerfile \ --push \ -t koenkk/zigbee2mqtt:latest-dev \ . - name: Docker build release if: startsWith(github.ref, 'refs/tags/') && github.event_name == 'push' run: | TAG="$(git describe --tags)" buildx build \ --build-arg COMMIT=$(git rev-parse --short HEAD) \ --platform linux/arm64/v8,linux/amd64,linux/arm/v6,linux/arm/v7,linux/386 \ -f docker/Dockerfile \ --push \ -t koenkk/zigbee2mqtt:latest -t "koenkk/zigbee2mqtt:$TAG" \ . - name: Publish to npm if: startsWith(github.ref, 'refs/tags/') && github.event_name == 'push' run: npm publish env: NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN }} - name: Trigger danielwelch/hassio-zigbee2mqtt build if: github.ref == 'refs/heads/dev' && github.event_name == 'push' run: | curl -s \ --request POST \ --header "Content-Type: application/json" \ --data '{"definition": {"id": 1}}' \ -u ${{ secrets.HASSIO_TRIGGER_SECRET }} \ "https://dev.azure.com/danielwelch2101/hassio-zigbee2mqtt/_apis/build/builds?api-version=5.1"