Skip to content

Commit

Permalink
chore: grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasRooney committed Jan 8, 2025
1 parent 286f78e commit e2db672
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 1 deletion.
36 changes: 36 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Test

on:
pull_request:

jobs:
build:
name: Conventional pull request names
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: amannn/action-semantic-pull-request@0723387faaf9b38adef4775cd42cfd5155ed6017 # v5.5.3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
build-test:
name: Build & Test
if: ${{ github.event.pull_request.draft == false }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Set up Go
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
with:
go-version-file: "go.mod"
- name: Set up Node
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
with:
node-version: "18.x"
registry-url: "https://registry.npmjs.org"
- name: Set up gotestfmt
run: go install github.com/gotesttools/gotestfmt/v2/cmd/gotestfmt@latest
- name: Build
run: go build ./...
- run: go test -json -v -p 1 ./... | gotestfmt
- name: build web
run: cd web && pnpm install && pnpm build
2 changes: 1 addition & 1 deletion web/src/Playground.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ function Playground() {
<Link href="https://github.com/OAI/Overlay-Specification">
OpenAPI Overlay Specification
</Link>{" "}
lets you update arbitrary values in an YAML document using{" "}
lets you update arbitrary values in a YAML document using{" "}
<Link href="https://datatracker.ietf.org/doc/rfc9535/">
jsonpath
</Link>
Expand Down

0 comments on commit e2db672

Please sign in to comment.