diff --git a/.github/workflows/publish-cli.yml b/.github/workflows/publish-cli.yml index 27f5307..42e754f 100644 --- a/.github/workflows/publish-cli.yml +++ b/.github/workflows/publish-cli.yml @@ -11,7 +11,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 20 - run: yarn install - run: yarn test publish: @@ -23,7 +23,7 @@ jobs: - uses: actions/setup-node@v3 with: registry-url: 'https://registry.npmjs.org' - node-version: 16 + node-version: 20 - run: cd create-vite-express && yarn install && yarn build && npm publish env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index dda8dbe..9cf1350 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -11,7 +11,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 20 - run: yarn install - run: yarn test:local publish: @@ -23,7 +23,7 @@ jobs: - uses: actions/setup-node@v3 with: registry-url: 'https://registry.npmjs.org' - node-version: 16 + node-version: 20 - run: yarn install - run: yarn build - run: npm publish diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d62fd8b..6116898 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,7 +8,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 20 - run: yarn install - run: yarn test test-local: @@ -18,7 +18,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 20 - run: yarn install - run: yarn test:local \ No newline at end of file