Skip to content
This repository was archived by the owner on May 15, 2025. It is now read-only.

Commit 6b84200

Browse files
authored
ci: check for typos (#131)
1 parent 376c0ca commit 6b84200

File tree

6 files changed

+11
-9
lines changed

6 files changed

+11
-9
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,7 @@ jobs:
3434
run: bun install
3535
- name: Format
3636
run: bun fmt:ci
37+
- name: typos-action
38+
uses: crate-ci/typos@v1.17.2
3739
- name: Lint
3840
run: bun lint

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
To create a new module, clone this repository and run:
44

55
```shell
6-
./new.sh MOUDLE_NAME
6+
./new.sh MODULE_NAME
77
```
88

99
## Testing a Module

exoscale-instance-type/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ tags: [helper, parameter, instances, exoscale]
1010
# exoscale-instance-type
1111

1212
A parameter with all Exoscale instance types. This allows developers to select
13-
their desired virtuell machine for the workspace.
13+
their desired virtual machine for the workspace.
1414

1515
Customize the preselected parameter value:
1616

@@ -70,7 +70,7 @@ resource "coder_metadata" "workspace_info" {
7070

7171
![Exoscale instance types Custom](../.images/exoscale-instance-custom.png)
7272

73-
### Use category and exlude type
73+
### Use category and exclude type
7474

7575
Show only gpu1 types
7676

filebrowser/main.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ describe("filebrowser", async () => {
3333
expect(output.stdout).toEqual([
3434
"\u001b[0;1mInstalling filebrowser ",
3535
"",
36-
"🥳 Installation comlete! ",
36+
"🥳 Installation complete! ",
3737
"",
3838
"👷 Starting filebrowser in background... ",
3939
"",
@@ -55,7 +55,7 @@ describe("filebrowser", async () => {
5555
expect(output.stdout).toEqual([
5656
"\u001b[0;1mInstalling filebrowser ",
5757
"",
58-
"🥳 Installation comlete! ",
58+
"🥳 Installation complete! ",
5959
"",
6060
"👷 Starting filebrowser in background... ",
6161
"",
@@ -77,7 +77,7 @@ describe("filebrowser", async () => {
7777
expect(output.stdout).toEqual([
7878
"\u001B[0;1mInstalling filebrowser ",
7979
"",
80-
"🥳 Installation comlete! ",
80+
"🥳 Installation complete! ",
8181
"",
8282
"👷 Starting filebrowser in background... ",
8383
"",

filebrowser/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ printf "$${BOLD}Installing filebrowser \n\n"
55

66
curl -fsSL https://raw.githubusercontent.com/filebrowser/get/master/get.sh | bash
77

8-
printf "🥳 Installation comlete! \n\n"
8+
printf "🥳 Installation complete! \n\n"
99

1010
printf "👷 Starting filebrowser in background... \n\n"
1111

new.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env bash
22

3-
# This scripts creates a new sample moduledir with requried files
3+
# This scripts creates a new sample moduledir with required files
44
# Run it like : ./new.sh my-module
55

66
MODULE_NAME=$1
@@ -11,7 +11,7 @@ if [ -z "$MODULE_NAME" ]; then
1111
exit 1
1212
fi
1313

14-
# Create module directory and exit if it alredy exists
14+
# Create module directory and exit if it already exists
1515
if [ -d "$MODULE_NAME" ]; then
1616
echo "Module with name $MODULE_NAME already exists"
1717
echo "Please choose a different name"

0 commit comments

Comments
 (0)