-
Notifications
You must be signed in to change notification settings - Fork 1
40 lines (39 loc) · 938 Bytes
/
release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
---
name: Release
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
k6-load-test:
name: Load Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run k6
uses: grafana/k6-action@v0.3.1
with:
filename: .github/workflows/test.js
release:
runs-on: ubuntu-latest
needs:
- k6-load-test
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup NodeJS
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
- name: Run release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npx semantic-release