Skip to content

ci: check for typos #131

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Jan 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,7 @@ jobs:
run: bun install
- name: Format
run: bun fmt:ci
- name: typos-action
uses: crate-ci/typos@v1.17.2
- name: Lint
run: bun lint
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
To create a new module, clone this repository and run:

```shell
./new.sh MOUDLE_NAME
./new.sh MODULE_NAME
```

## Testing a Module
Expand Down
4 changes: 2 additions & 2 deletions exoscale-instance-type/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ tags: [helper, parameter, instances, exoscale]
# exoscale-instance-type

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

Customize the preselected parameter value:

Expand Down Expand Up @@ -70,7 +70,7 @@ resource "coder_metadata" "workspace_info" {

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

### Use category and exlude type
### Use category and exclude type

Show only gpu1 types

Expand Down
6 changes: 3 additions & 3 deletions filebrowser/main.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ describe("filebrowser", async () => {
expect(output.stdout).toEqual([
"\u001b[0;1mInstalling filebrowser ",
"",
"🥳 Installation comlete! ",
"🥳 Installation complete! ",
"",
"👷 Starting filebrowser in background... ",
"",
Expand All @@ -55,7 +55,7 @@ describe("filebrowser", async () => {
expect(output.stdout).toEqual([
"\u001b[0;1mInstalling filebrowser ",
"",
"🥳 Installation comlete! ",
"🥳 Installation complete! ",
"",
"👷 Starting filebrowser in background... ",
"",
Expand All @@ -77,7 +77,7 @@ describe("filebrowser", async () => {
expect(output.stdout).toEqual([
"\u001B[0;1mInstalling filebrowser ",
"",
"🥳 Installation comlete! ",
"🥳 Installation complete! ",
"",
"👷 Starting filebrowser in background... ",
"",
Expand Down
2 changes: 1 addition & 1 deletion filebrowser/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ printf "$${BOLD}Installing filebrowser \n\n"

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

printf "🥳 Installation comlete! \n\n"
printf "🥳 Installation complete! \n\n"

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

Expand Down
4 changes: 2 additions & 2 deletions new.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

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

MODULE_NAME=$1
Expand All @@ -11,7 +11,7 @@ if [ -z "$MODULE_NAME" ]; then
exit 1
fi

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