Skip to content
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

Test reviewdog concurrency issue fix #25

Closed
wants to merge 6 commits into from
Closed
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
4 changes: 4 additions & 0 deletions .github/workflows/pr-check-lint_content.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ on:
permissions:
pull-requests: write

concurrency:
group: ci-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
lint-and-review-docs:
runs-on: ubuntu-latest
Expand Down
6 changes: 6 additions & 0 deletions files/en-us/games/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ Welcome to the MDN game development center! In this area of the site, we provide

We've also included a reference section so you can easily find information about all the most common APIs used in game development.

```css
div {
background: red;
}
```

> **Note:** Creating games on the web draws on a number of core web technologies such as HTML, CSS, and JavaScript. The [Learning Area](/en-US/docs/Learn) is a good place to go to get started with the basics.

## Port native games to the Web
Expand Down