Skip to content

fix(DOPS-2602): update GitHub Actions to Node 24 compatible versions #923

fix(DOPS-2602): update GitHub Actions to Node 24 compatible versions

fix(DOPS-2602): update GitHub Actions to Node 24 compatible versions #923

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v6
with:
node-version: 22
cache: 'yarn'
- run: yarn
- run: yarn lint
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v6
with:
node-version: 22
cache: 'yarn'
- run: yarn
- run: yarn test:ci
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v6
with:
node-version: 22
cache: 'yarn'
- run: yarn
- run: yarn coverage
- uses: codecov/codecov-action@v7