-
Notifications
You must be signed in to change notification settings - Fork 1
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
1 parent
ed3ab34
commit e423080
Showing
6 changed files
with
118 additions
and
90 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,118 @@ | ||
on: push | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
|
||
name: CI | ||
|
||
jobs: | ||
eslint: | ||
name: ESLint | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 5 | ||
env: | ||
LINT: 1 | ||
steps: | ||
- name: Set running flag | ||
run: echo "RUNNING=1" >> $GITHUB_ENV | ||
- uses: actions/checkout@v3 | ||
- uses: technote-space/get-git-comment-action@v1 | ||
- uses: technote-space/get-diff-action@v6 | ||
with: | ||
PATTERNS: +(src|__tests__)/**/*.+(js|ts) | ||
FILES: | | ||
yarn.lock | ||
.eslintrc | ||
if: "! contains(env.COMMIT_MESSAGE, '[skip ci]') && ! contains(env.COMMIT_MESSAGE, '[ci skip]')" | ||
- name: Set running flag | ||
run: echo "RUNNING=" >> $GITHUB_ENV | ||
if: "! env.GIT_DIFF" | ||
|
||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
cache: yarn | ||
if: env.RUNNING | ||
- name: Install Package dependencies | ||
run: yarn install | ||
if: env.RUNNING | ||
- name: Check code style | ||
run: yarn eslint ${{ env.GIT_DIFF_FILTERED }} | ||
if: env.RUNNING && !env.MATCHED_FILES | ||
- name: Check code style | ||
run: yarn lint | ||
if: env.RUNNING && env.MATCHED_FILES | ||
|
||
cover: | ||
name: Coverage | ||
needs: eslint | ||
runs-on: ${{matrix.os}} | ||
timeout-minutes: 10 | ||
strategy: | ||
matrix: | ||
os: [ubuntu-20.04, ubuntu-22.04, ubuntu-latest, macos-latest] | ||
steps: | ||
- name: Set running flag | ||
run: echo "RUNNING=1" >> $GITHUB_ENV | ||
- uses: actions/checkout@v3 | ||
- uses: technote-space/get-git-comment-action@v1 | ||
- uses: technote-space/get-diff-action@v6 | ||
with: | ||
PATTERNS: +(src|__tests__)/**/*.+(js|ts|snap) | ||
FILES: | | ||
yarn.lock | ||
jest.config.js | ||
vite.config.ts | ||
if: "! contains(env.COMMIT_MESSAGE, '[skip ci]') && ! contains(env.COMMIT_MESSAGE, '[ci skip]')" | ||
- name: Set running flag | ||
run: echo "RUNNING=" >> $GITHUB_ENV | ||
if: "! env.GIT_DIFF" | ||
- name: Set running flag | ||
if: "matrix.os == 'ubuntu-latest' && ! startsWith(github.ref, 'refs/tags/') && github.event.base_ref == format('refs/heads/{0}', github.event.repository.default_branch)" | ||
run: echo "RUNNING=1" >> $GITHUB_ENV | ||
- name: Set running flag | ||
if: "matrix.os == 'ubuntu-latest' && ! startsWith(github.ref, 'refs/tags/') && startsWith(github.base_ref, 'refs/heads/develop/v')" | ||
run: echo "RUNNING=1" >> $GITHUB_ENV | ||
- name: Set running flag | ||
if: matrix.os == 'ubuntu-latest' && startsWith(github.ref, 'refs/tags/v') | ||
run: echo "RUNNING=1" >> $GITHUB_ENV | ||
- name: Set running flag | ||
run: | | ||
if [[ ! -f package.json ]] || ! < package.json jq -r '.scripts | keys[]' | grep -qe '^cover$'; then | ||
echo "RUNNING=" >> $GITHUB_ENV | ||
fi | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
cache: yarn | ||
if: env.RUNNING | ||
- name: Install Package dependencies | ||
run: yarn install | ||
if: env.RUNNING | ||
- name: Run tests | ||
run: yarn cover | ||
if: env.RUNNING | ||
- name: Codecov | ||
run: | | ||
if [ -n "$CODECOV_TOKEN" ]; then | ||
curl -s https://codecov.io/bash | bash -s -- -t $CODECOV_TOKEN -f $COVERAGE_FILE | ||
fi | ||
env: | ||
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | ||
COVERAGE_FILE: ./coverage/lcov.info | ||
if: env.RUNNING && matrix.os == 'ubuntu-latest' | ||
|
||
slack: | ||
name: Slack | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 3 | ||
if: always() | ||
steps: | ||
- uses: technote-space/workflow-conclusion-action@gh-actions | ||
- uses: 8398a7/action-slack@v3 | ||
with: | ||
status: failure | ||
env: | ||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | ||
if: env.WORKFLOW_CONCLUSION == 'failure' && env.SLACK_WEBHOOK_URL |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
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