Skip to content

Commit

Permalink
Update CI (bump ubuntu, node and actions versions)
Browse files Browse the repository at this point in the history
  • Loading branch information
martpie committed Oct 27, 2023
1 parent f036405 commit 2b1dcbc
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [16]
node-version: [18]

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

Expand All @@ -24,10 +24,10 @@ jobs:
echo "npm version $(npm -v) running"
- name: Install dependencies
run: npm ci
run: yarn

- name: "Unit tests"
run: "npm run test"
run: "yarn test"

- name: "Build"
run: "npm run build"
run: "yarn build"

0 comments on commit 2b1dcbc

Please sign in to comment.