Skip to content

Merge pull request #17 from mwargan/feat-allow-string-ids #9

Merge pull request #17 from mwargan/feat-allow-string-ids

Merge pull request #17 from mwargan/feat-allow-string-ids #9

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node V20.x.x
uses: actions/setup-node@v1
with:
node-version: '20.x'
- name: Install Dependencies
run: npm ci
- name: Check Formatting
run: npm run format
- name: Lint
run: npm run lint
- name: Unit Test
run: npm run test:coverage
- name: Upload Code Coverage Report
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage/clover.xml
name: vue-hotjar-next--test-coverage
fail_ci_if_error: true