diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fe425d2..a630da3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: '16' + node-version: '20' cache: 'npm' - run: npm ci - run: npm run lint diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 81e0c55..4ad00b2 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -9,7 +9,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: '16' + node-version: '20' cache: 'npm' - name: Coverage diff --git a/.github/workflows/npmpublish.yml b/.github/workflows/npmpublish.yml index ea41b49..df20bfc 100644 --- a/.github/workflows/npmpublish.yml +++ b/.github/workflows/npmpublish.yml @@ -10,7 +10,7 @@ jobs: # Setup .npmrc file to publish to npm - uses: actions/setup-node@v3 with: - node-version: '16' + node-version: '20' registry-url: 'https://registry.npmjs.org' - run: npm ci - run: npm publish