diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index df6b3a5..25b0f31 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: - node-version: 14 + node-version: 18 - run: yarn install - run: yarn test @@ -24,7 +24,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: - node-version: 14 + node-version: 18 registry-url: https://registry.npmjs.org/ - name: Install dependencies run: yarn install @@ -41,7 +41,7 @@ jobs: # - uses: actions/checkout@v2 # - uses: actions/setup-node@v2 # with: -# node-version: 14 +# node-version: 18 # registry-url: https://npm.pkg.github.com/ # scope: '@levibuzolic' # - run: yarn install diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 12e09c3..55c8bb9 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -8,7 +8,7 @@ jobs: strategy: matrix: - node-version: [10, 12, 14] + node-version: [14, 16, 18] steps: - uses: actions/checkout@v2