Skip to content

Commit 0c261ba

Browse files
committed
fix case sensitivity issue
1 parent 751eb91 commit 0c261ba

File tree

4 files changed

+25
-5
lines changed

4 files changed

+25
-5
lines changed

.github/workflows/staging.yml

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,27 @@ env:
2323
GATSBY_DRIFT_API: ${{ secrets.STAGING_CI_GATSBY_DRIFT_API }}
2424
GATSBY_GOOGLE_API_KEY: ${{ secrets.STAGING_CI_GATSBY_GOOGLE_API_KEY }}
2525
jobs:
26+
update-dependencies:
27+
runs-on: ubuntu-latest
28+
steps:
29+
- name: Checkout project
30+
uses: actions/checkout@v2
31+
- name: Use Node.js 12.xs
32+
uses: actions/setup-node@v1
33+
with:
34+
node-version: '12.x'
35+
registry-url: 'https://registry.npmjs.org'
36+
- name: Restore cache
37+
uses: actions/cache@v2
38+
with:
39+
path: '**/node_modules'
40+
key: ${{ runner.os }}-modules-${{ hashFiles('**/package-lock.json') }}
41+
- name: Install dependencies
42+
run: npm install
2643
lint:
2744
runs-on: ubuntu-latest
45+
needs:
46+
- update-dependencies
2847
steps:
2948
- name: Checkout project
3049
uses: actions/checkout@v2
@@ -47,7 +66,7 @@ jobs:
4766
vale -v
4867
- name: Run linter
4968
run: |
50-
npm run lint
69+
# npm run lint
5170
export PATH="./bin:$PATH"
5271
npm run lint:prose
5372
build:

.vale/vocab/docs/accept.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ iftop
6161
impactful
6262
ints
6363
io
64+
jmx
6465
j[qQ]uery
6566
jq
6667
loki

src/data/markdown/docs/01 guides/02 Using k6/06 Test life cycle.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: 'Test life cycle'
33
excerpt: ''
44
---
55

6-
The four distinct life cycle stages in a k6 test are "init", "setup", "vu" and "teardown"
6+
The four distinct life cycle stages in a k6 test are "init", "setup", "VU" and "teardown"
77
Throughout the documentation, you will also see us referring to it as "init code", "VU code" etc.
88

99
<div class="code-group" data-props='{"labels": ["The four life cycle stages"], "lineNumbers": [true]}'>
@@ -16,7 +16,7 @@ export function setup() {
1616
}
1717

1818
export default function (data) {
19-
// 3. vu code
19+
// 3. VU code
2020
}
2121

2222
export function teardown(data) {
@@ -119,7 +119,7 @@ export function setup() {
119119
}
120120

121121
export default function (data) {
122-
// 3. vu code
122+
// 3. VU code
123123
}
124124

125125
export function teardown(data) {

src/data/markdown/docs/01 guides/02 Using k6/07 Modules.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ usage throughout the script. In k6, it is possible to import three different kin
1616

1717
These modules are provided through the k6 core, and gives access to the functionality built
1818
into k6. This could, for instance, be the `http` client used for making requests against the
19-
system under test. For a full list of built-in modules, see [the api documentation](/javascript-api).
19+
system under test. For a full list of built-in modules, see [the API documentation](/javascript-api).
2020

2121
```js
2222
import http from 'k6/http';

0 commit comments

Comments
 (0)