Skip to content

Commit

Permalink
chore(ci): use supported Node / runnner versions
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexZeitler authored Jul 19, 2023
1 parent a389608 commit 2172fb3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,34 +10,34 @@ on:

jobs:
lint:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
name: Lint
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '14'
node-version: '18'
- run: yarn
- run: yarn lint-ts
build:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
needs: lint
name: Build
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '14'
node-version: '18'
- run: yarn
- run: yarn build
test:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
needs: Build
name: Test
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '14'
node-version: '18'
- run: yarn
- run: yarn test

0 comments on commit 2172fb3

Please sign in to comment.