diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b713abc..793a36a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,11 +13,11 @@ jobs: - uses: actions/setup-node@v4 with: cache: yarn - node-version-file: '.nvmrc' + node-version-file: ".nvmrc" - run: yarn install - run: yarn build - run: yarn test --passWithNoTests - + integration: runs-on: ubuntu-latest permissions: {} diff --git a/.github/workflows/mergeabot.yml b/.github/workflows/mergeabot.yml index f2e6e77..4a64b32 100644 --- a/.github/workflows/mergeabot.yml +++ b/.github/workflows/mergeabot.yml @@ -4,7 +4,7 @@ on: pull_request: schedule: - cron: "0 0 * * *" - + permissions: contents: write pull-requests: write # so we add comment from Dependabot diff --git a/jest.config.js b/jest.config.js index e86e13b..21a1e97 100644 --- a/jest.config.js +++ b/jest.config.js @@ -1,5 +1,5 @@ /** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */ module.exports = { - preset: 'ts-jest', - testEnvironment: 'node', + preset: "ts-jest", + testEnvironment: "node", };