sql-dsl/.github/workflows/coverage.yml

34 lines
562 B
YAML
Raw Permalink Normal View History

2021-07-11 11:04:04 +00:00
name: Code Coverage
on:
push:
2022-09-24 00:56:33 +00:00
branches: ["master"]
2021-07-11 11:04:04 +00:00
pull_request:
jobs:
coverage:
name: Codecov
runs-on: ubuntu-latest
steps:
2022-09-24 00:56:33 +00:00
- name: Checkout repository
2024-02-11 13:02:47 +00:00
uses: actions/checkout@v4
2021-07-11 11:04:04 +00:00
2022-09-24 00:56:33 +00:00
- name: Setup Node.js
2024-02-11 13:02:47 +00:00
uses: actions/setup-node@v4
2022-09-24 00:56:33 +00:00
with:
2024-02-11 13:02:47 +00:00
node-version: 20
2021-07-11 11:04:04 +00:00
2022-09-24 00:56:33 +00:00
- name: Installing dependencies
run: npm install
2021-07-13 06:22:43 +00:00
2022-09-24 00:56:33 +00:00
- name: Lint
run: npm run lint
2021-07-11 11:04:04 +00:00
2022-09-24 00:56:33 +00:00
- name: Running test
run: npm run test
2021-07-11 11:04:04 +00:00
2022-09-24 00:56:33 +00:00
- name: Upload to Codecov
2024-02-11 13:02:47 +00:00
uses: codecov/codecov-action@v4