-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
105 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# This is a GitHub workflow YAML file | ||
# see https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions | ||
# | ||
# If you want to update this file it's recommended to use a YAML validator | ||
# https://marketplace.visualstudio.com/items?itemName=redhat.vscode-yaml | ||
# configured to validate with https://json.schemastore.org/github-workflow.json | ||
# | ||
# This workflow is responsible to perform various checks related to the codebase, | ||
# For every push to main or on a pull request, it | ||
# - ensures there is no eslint error on files | ||
# - ensures there is no test failing | ||
# - uploads code coverage from tests to codecov | ||
# | ||
# If all these steps are passing and there is a secrets.NPM_TOKEN and version in package.json | ||
# is not already published, workflow published the package on npm. | ||
|
||
name: main | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- "**" | ||
|
||
jobs: | ||
test: | ||
strategy: | ||
matrix: | ||
os: [ubuntu-20.04] | ||
node: [20.8.0] | ||
runs-on: ${{ matrix.os }} | ||
name: test on ${{ matrix.os }} and node ${{ matrix.node }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node }} | ||
- name: Install node modules | ||
run: npm install | ||
- name: Run ESLint | ||
run: npm run eslint | ||
- name: Run tests | ||
run: node ./.github/workflows/run_check.mjs | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
import { | ||
readGitHubWorkflowEnv, | ||
startGithubCheckRun, | ||
} from "@jsenv/github-check-run"; | ||
|
||
const { progress, pass } = await startGithubCheckRun({ | ||
...readGitHubWorkflowEnv(), | ||
checkName: "MY_CHECK_NAME", | ||
checkTitle: "MY_CHECK_TITLE", | ||
checkSummary: "MY_CHECK_SUMMARY", | ||
}); | ||
|
||
await new Promise((resolve) => { | ||
setTimeout(resolve, 2_000); | ||
}); | ||
await progress({ | ||
title: "PROGRESS AFTER 2s", | ||
summary: "SUMMARY AFTER 2s", | ||
}); | ||
|
||
await new Promise((resolve) => { | ||
setTimeout(resolve, 4_000); | ||
}); | ||
await progress({ | ||
title: "PROGRESS AFTER 6s", | ||
summary: "SUMMARY AFTER 6s", | ||
}); | ||
|
||
await new Promise((resolve) => { | ||
setTimeout(resolve, 6_000); | ||
}); | ||
await pass({ | ||
title: "SUCCESS AFTER 10s", | ||
summary: "SUMMARY AFTER 10s", | ||
}); |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters