diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b3dcae3..b39a2b4 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,10 +8,10 @@ jobs: CI_JOB_NUMBER: 1 steps: - uses: actions/checkout@v1 - - name: Use Node.js 16.x + - name: Use Node.js 20.x uses: actions/setup-node@v1 with: - node-version: 16.x + node-version: 20.x - run: yarn install - run: yarn lint-test @@ -21,9 +21,9 @@ jobs: CI_JOB_NUMBER: 2 steps: - uses: actions/checkout@v1 - - name: Use Node.js 16.x + - name: Use Node.js 20.x uses: actions/setup-node@v1 with: - node-version: 16.x + node-version: 20.x - run: yarn install - run: yarn build diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index a25da5f..d8f7672 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: - node-version: 16 + node-version: 20 registry-url: https://registry.npmjs.org/ - run: yarn - run: yarn lint-test