From 07811098e8e6143bc83ef01d1078cd1976d44cf1 Mon Sep 17 00:00:00 2001 From: alisahinozcelik Date: Sat, 25 Nov 2023 23:50:35 +0300 Subject: [PATCH] build: github actions fix --- .github/workflows/npmpublish.yml | 2 +- .github/workflows/pullrequest.yml | 2 +- .github/workflows/pushmaster.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/npmpublish.yml b/.github/workflows/npmpublish.yml index ae80417..6d64d92 100644 --- a/.github/workflows/npmpublish.yml +++ b/.github/workflows/npmpublish.yml @@ -13,7 +13,7 @@ jobs: run: echo "PACKAGE_VERSION=${GITHUB_REF:10}" >> $GITHUB_ENV - uses: actions/setup-node@v1 with: - node-version: 12 + node-version: 18 registry-url: https://registry.npmjs.org/ - run: npm install - run: npm test diff --git a/.github/workflows/pullrequest.yml b/.github/workflows/pullrequest.yml index 7176173..622d8cd 100644 --- a/.github/workflows/pullrequest.yml +++ b/.github/workflows/pullrequest.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/checkout@v1 - uses: actions/setup-node@v1 with: - node-version: 12 + node-version: 18 - run: npm install - run: npm run lint - run: npm run test:coverage diff --git a/.github/workflows/pushmaster.yml b/.github/workflows/pushmaster.yml index c19d9e2..3c69f8a 100644 --- a/.github/workflows/pushmaster.yml +++ b/.github/workflows/pushmaster.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/checkout@v1 - uses: actions/setup-node@v1 with: - node-version: 12 + node-version: 18 - run: npm install - run: npm run test:coverage - name: Upload coverage to Codecov