Skip to content

fix(uptime): use get instead of post #365

fix(uptime): use get instead of post

fix(uptime): use get instead of post #365

Workflow file for this run

name: CI
on:
pull_request:
branches:
- "*"
push:
branches:
- "feat/**"
- "fix/**"
- "refactor/**"
- "test/**"
jobs:
ci:
name: Check
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Installling dependencies
run: npm install
- name: ESLint check
run: npx eslint --ignore-path .gitignore .
- name: Test
run: npm run test
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: javascript
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
- name: Send coverage report to Codecov
uses: codecov/codecov-action@v3