diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..af1bf32 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,16 @@ +on: [push, pull_request] + +jobs: + build: + runs-on: ubuntu-latest + + name: Coverage + steps: + - uses: actions/checkout@v4 + - name: Setup node + uses: actions/setup-node@v4 + - run: npm i + - run: npm run testAll + - run: codecov-action@v5 + + diff --git a/package.json b/package.json index 736de09..fa942fd 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "testFrontend": "jest ./frontend", "testWords": "jest ./words", "testTemples": "jest ./temples", - "testAll": "jest --watchAll" + "testAll": "jest" }, "repository": { "type": "git",