diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f267e58..3c1dee4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,14 +25,14 @@ jobs: - 'test' steps: - name: Checkout repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setup node - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: - node-version: 12 + node-version: 16 - - name: Run lint + - name: Run ${{ matrix.command }} run: yarn && yarn build && yarn ${{ matrix.command }} env: CI: true \ No newline at end of file diff --git a/.github/workflows/comment.yml b/.github/workflows/comment.yml index 52ce7b7..1fe4a22 100644 --- a/.github/workflows/comment.yml +++ b/.github/workflows/comment.yml @@ -15,7 +15,7 @@ jobs: startsWith(github.event.comment.body, '/rebase') steps: - name: Checkout repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 @@ -33,7 +33,7 @@ jobs: startsWith(github.event.comment.body, '/release:next') steps: - name: Checkout repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 @@ -43,9 +43,9 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Setup node - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: - node-version: 12.x + node-version: 16 registry-url: https://registry.npmjs.org - name: Install dependencies diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 136f4da..4f3ee1b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,14 +15,14 @@ jobs: - latest steps: - name: Checkout repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: Setup node - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: - node-version: 12.x + node-version: 16 registry-url: https://registry.npmjs.org - name: Install dependencies