Skip to content

Bump github actions #24

Bump github actions

Bump github actions #24

Workflow file for this run

on:
pull_request:
push:
branches:
- master
- release/*
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ '18', '20', '22' ]
install: [ '', '--frozen-lockfile' ]
name: Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: yarn install ${{ matrix.install }}
- run: yarn test