build(deps-dev): bump @typescript-eslint/eslint-plugin from 5.61.0 to 7.3.1 #70
Workflow file for this run
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
name: Test | |
on: | |
workflow_dispatch: | |
push: | |
branches: [master] | |
pull_request_target: | |
branches: | |
- master | |
concurrency: | |
group: 'test' | |
cancel-in-progress: false | |
jobs: | |
test: | |
name: Test Library API Response | |
runs-on: ubuntu-latest | |
permissions: | |
checks: write | |
pull-requests: write | |
contents: write | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js 18.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
cache: 'npm' | |
cache-dependency-path: package-lock.json | |
- name: Install dependencies | |
run: npm ci | |
- name: Make envfile | |
uses: SpicyPizza/create-envfile@v1.3 | |
with: | |
envkey_DEBUG: true | |
envkey_LTOKEN: ${{ secrets.LTOKEN }} | |
envkey_LTUID: ${{ secrets.LTUID }} | |
envkey_ACCOUNT_ID: ${{ secrets.ACCOUNT_ID }} | |
envkey_COOKIE_TOKEN: ${{ secrets.COOKIE_TOKEN }} | |
envkey_ACCOUNT_ID_V2: ${{ secrets.ACCOUNT_ID_V2 }} | |
envkey_ACCOUNT_MID_V2: ${{ secrets.ACCOUNT_MID_V2 }} | |
envkey_COOKIE_TOKEN_V2: ${{ secrets.COOKIE_TOKEN_V2 }} | |
envkey_HI_UID: ${{ secrets.HI_UID }} | |
envkey_GI_UID: ${{ secrets.GI_UID }} | |
envkey_HSR_UID: ${{ secrets.HSR_UID }} | |
- name: Lint | |
run: npm run lint | |
- name: Format | |
run: npm run format | |
- name: Test and Coverage | |
run: npm run test:coverage | |
- name: Create Coverage Badges | |
uses: jaywcjlove/coverage-badges-cli@main | |
with: | |
style: flat | |
source: coverage/coverage-summary.json | |
output: coverage/badges.svg | |
- name: Deploy Test | |
uses: peaceiris/actions-gh-pages@v3 | |
if: github.ref == 'refs/heads/master' | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./coverage |