Skip to content

chore(deps): update grafana/k6 digest to 5dce05d #219

chore(deps): update grafana/k6 digest to 5dce05d

chore(deps): update grafana/k6 digest to 5dce05d #219

Workflow file for this run

name: CI
on:
# Enables running the workflow manually from the Actions tab
workflow_dispatch:
push:
branches:
- main
tags:
- v*
pull_request:
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 10
permissions:
contents: read
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
persist-credentials: false
- name: Setup Deno
uses: denoland/setup-deno@667a34cdef165d8d2b2e98dde39547c9daac7282 # v2.0.4
with:
deno-version: v2.x
- name: Check Formatting
run: deno task fmt
- name: Check Linting
run: deno task lint
- name: Build
run: deno task build
- name: Install Go
uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6
with:
go-version: 1.26.x
cache: false
- name: Install k6
run: go install go.k6.io/k6@latest
- name: Build the docker-compose stack
uses: hoverkraft-tech/compose-action@4894d2492015c1774ee5a13a95b1072093087ec3 # v2.5.0
with:
up-flags: '-d'
down-flags: '-v'
- name: Wait for the localstack scripts to have been applied
run: sleep 30
- name: Test
run: deno task test:ci