Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

Commit

Permalink
chore: upgrade actions runners (#1767)
Browse files Browse the repository at this point in the history
  • Loading branch information
ignatiusmb authored Sep 21, 2022
1 parent 39e9985 commit 614c02a
Showing 1 changed file with 8 additions and 18 deletions.
26 changes: 8 additions & 18 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,27 +16,17 @@ jobs:

runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2.1.5
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- uses: actions/cache@v2
- uses: actions/cache@v3
with:
path: ~/.pkg-cache/
key: ${{ matrix.os }}-${{ matrix.node-version }}

- name: Install deps
run: yarn install
key: ${{ matrix.os }}-${{ matrix.node-version }}

- name: Lint
if: matrix['node-version'] == '16.x' && matrix['os'] == 'ubuntu-latest'
- run: yarn install
- if: matrix['node-version'] == '16.x' && matrix['os'] == 'ubuntu-latest'
run: yarn lint

- name: Build
run: yarn build

- name: Test
run: yarn test
- run: yarn build
- run: yarn test

0 comments on commit 614c02a

Please sign in to comment.