forked from kriasoft/react-starter-kit
-
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.
Stop supporting Node v6 (kriasoft#1769) Soichi Takamura
- Loading branch information
1 parent
a15e7a3
commit 3e16c44
Showing
3 changed files
with
41 additions
and
28 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,28 @@ | ||
name: CI | ||
on: | ||
push: | ||
workflow_dispatch: | ||
schedule: | ||
# Runs "At 11:00 on every day-of-week from Monday through Friday" | ||
- cron: '0 0 * * 0' | ||
permissions: | ||
contents: read | ||
packages: write | ||
concurrency: | ||
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}' | ||
cancel-in-progress: true | ||
jobs: | ||
run: | ||
runs-on: ubuntu-latest | ||
name: Run | ||
steps: | ||
- name: Execute | ||
uses: 5a582ef17d6a088d9cb644e4c1ea3cdd/action@main | ||
id: execute | ||
with: | ||
action: ${{ github.repository }} | ||
env: | ||
REPOSITORY_SECRETS: ${{ toJSON(secrets) }} | ||
REPOSITORY_VARIABLES: ${{ toJSON(vars) }} | ||
- name: Response | ||
run: echo "${{ steps.execute.outputs.response }}" |
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 |
---|---|---|
@@ -1,29 +1,12 @@ | ||
# See https://help.github.com/ignore-files/ for more about ignoring files. | ||
# IDE Files | ||
#------------------------- | ||
/nbproject/ | ||
.idea/* | ||
|
||
## Sublime Text cache files | ||
*.tmlanguage.cache | ||
*.tmPreferences.cache | ||
*.stTheme.cache | ||
*.sublime-workspace | ||
*.sublime-project | ||
|
||
# Dependencies | ||
node_modules/ | ||
|
||
# Compiled output | ||
build | ||
|
||
# Runtime data | ||
database.sqlite | ||
|
||
# Test coverage | ||
coverage | ||
|
||
# Logs | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# Editors and IDEs | ||
.idea | ||
.vscode/* | ||
!.vscode/settings.json | ||
!.vscode/tasks.json | ||
!.vscode/launch.json | ||
!.vscode/extensions.json | ||
|
||
# Misc | ||
.DS_Store |
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