name: tests on: push: branches: [master, main] tags-ignore: ['**'] paths-ignore: ['**.md'] pull_request: paths-ignore: ['**.md'] jobs: # Docs: gitleaks: name: Gitleaks runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v3 with: {fetch-depth: 0} - uses: zricethezav/gitleaks-action@v1 # Action page: golangci-lint: name: Golang-CI (lint) runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v3 - uses: actions/setup-go@v2 with: {go-version: 1.17} # On v1.18 I had an error "panic: load embedded ruleguard rules: rules/rules.go:13: can't load fmt" - name: Run linter uses: golangci/golangci-lint-action@v3 # Action page: with: version: v1.44 # without patch version only-new-issues: false # show only new issues if it's a pull request validate-config-file: name: Validate config file runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: {node-version: '16'} - name: Install linter run: npm install -g ajv-cli # Package page: - name: Run linter run: ajv validate --all-errors --verbose -s ./schemas/config/1.0.schema.json -d ./error-pages.y*ml lint-l10n: name: Lint l10n file(s) runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: {node-version: '16'} - name: Install eslint run: npm install -g eslint@v8 # Package page: - name: Run linter working-directory: l10n run: eslint ./*.js go-test: name: Unit tests runs-on: ubuntu-20.04 steps: - uses: actions/setup-go@v2 with: {go-version: 1.18} - uses: actions/checkout@v3 with: {fetch-depth: 2} # Fixes codecov error 'Issue detecting commit SHA' - name: Go modules Cache # Docs: uses: actions/cache@v3 id: go-cache with: path: ~/go/pkg/mod key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} restore-keys: ${{ runner.os }}-go- - if: steps.go-cache.outputs.cache-hit != 'true' run: go mod download - name: Run Unit tests run: go test -race -covermode=atomic -coverprofile /tmp/coverage.txt ./... - uses: codecov/codecov-action@v2 # https://github.com/codecov/codecov-action continue-on-error: true with: file: /tmp/coverage.txt token: ${{ secrets.CODECOV_TOKEN }} build: name: Build for ${{ matrix.os }} (${{ matrix.arch }}) runs-on: ubuntu-20.04 strategy: fail-fast: false matrix: os: [linux, darwin] # linux, freebsd, darwin, windows arch: [amd64] # amd64, 386 needs: [golangci-lint, go-test, validate-config-file] steps: - uses: actions/setup-go@v2 with: {go-version: 1.18} - uses: actions/checkout@v3 - uses: gacts/github-slug@v1 id: slug - name: Go modules Cache # Docs: uses: actions/cache@v3 with: path: ~/go/pkg/mod key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} restore-keys: ${{ runner.os }}-go- - run: go mod download - name: Build application env: GOOS: ${{ matrix.os }} GOARCH: ${{ matrix.arch }} CGO_ENABLED: 0 LDFLAGS: -s -w -X github.com/tarampampam/error-pages/internal/version.version=${{ steps.slug.outputs.branch-name-slug }}@${{ steps.slug.outputs.commit-hash-short }} run: go build -trimpath -ldflags "$LDFLAGS" -o ./error-pages ./cmd/error-pages/ - name: Try to execute if: matrix.os == 'linux' run: ./error-pages version && ./error-pages -h - uses: actions/upload-artifact@v2 with: name: error-pages-${{ matrix.os }}-${{ matrix.arch }} path: error-pages if-no-files-found: error retention-days: 1 generate: name: Run templates generator runs-on: ubuntu-20.04 needs: [build] steps: - uses: actions/checkout@v3 - uses: actions/download-artifact@v2 with: name: error-pages-linux-amd64 path: .artifact - name: Prepare binary file to run working-directory: .artifact run: mv ./error-pages ./../error-pages && chmod +x ./../error-pages - name: Run generator run: ./error-pages build ./out --verbose --index - name: Test files creation run: | test -f ./out/index.html test -f ./out/ghost/404.html test -f ./out/l7-dark/404.html test -f ./out/l7-light/404.html test -f ./out/shuffle/404.html test -f ./out/noise/404.html test -f ./out/hacker-terminal/404.html test -f ./out/cats/404.html test -f ./out/lost-in-space/404.html test -f ./out/app-down/404.html test -f ./out/connection/404.html test -f ./out/matrix/404.html docker-image: name: Build docker image runs-on: ubuntu-20.04 needs: [golangci-lint, go-test, validate-config-file] steps: - uses: actions/checkout@v3 - uses: gacts/github-slug@v1 id: slug - uses: docker/build-push-action@v2 # Action page: with: context: . file: Dockerfile push: false build-args: "APP_VERSION=${{ steps.slug.outputs.branch-name-slug }}@${{ steps.slug.outputs.commit-hash-short }}" tags: app:ci - run: docker save app:ci > ./docker-image.tar - uses: actions/upload-artifact@v2 with: name: docker-image path: ./docker-image.tar retention-days: 1 scan-docker-image: name: Scan the docker image runs-on: ubuntu-20.04 needs: [docker-image] steps: - uses: actions/checkout@v3 # is needed for `upload-sarif` action - uses: actions/download-artifact@v2 with: name: docker-image path: .artifact - uses: aquasecurity/trivy-action@0.2.2 # action page: with: input: .artifact/docker-image.tar format: sarif severity: MEDIUM,HIGH,CRITICAL exit-code: 1 output: trivy-results.sarif - uses: github/codeql-action/upload-sarif@v1 if: always() continue-on-error: true with: {sarif_file: trivy-results.sarif} poke-docker-image: name: Run the docker image runs-on: ubuntu-20.04 needs: [docker-image] timeout-minutes: 2 steps: - uses: actions/checkout@v3 - uses: actions/download-artifact@v2 with: name: docker-image path: .artifact - working-directory: .artifact run: docker load < docker-image.tar - name: Download hurl env: VERSION: 1.5.0 run: curl -SL -o hurl.deb https://github.com/Orange-OpenSource/hurl/releases/download/${VERSION}/hurl_${VERSION}_amd64.deb - name: Install hurl run: sudo dpkg -i hurl.deb - name: Run container with the app run: docker run --rm -d -p "8080:8080/tcp" -e "SHOW_DETAILS=true" -e "PROXY_HTTP_HEADERS=X-Foo,Bar,Baz_blah" --name app app:ci - name: Wait for container "healthy" state run: until [[ "`docker inspect -f {{.State.Health.Status}} app`" == "healthy" ]]; do echo "wait 1 sec.."; sleep 1; done - run: hurl --color --test --fail-at-end --variable host=127.0.0.1 --variable port=8080 --summary ./test/hurl/*.hurl - name: Stop the container if: always() run: docker kill app