Skip to content

chore(deps): pin grafana/k6 action to fb30dcf #82

chore(deps): pin grafana/k6 action to fb30dcf

chore(deps): pin grafana/k6 action to fb30dcf #82

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@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6
with:
go-version: 1.24.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