Skip to content

build(deps): bump actions/checkout from 3 to 4 #433

build(deps): bump actions/checkout from 3 to 4

build(deps): bump actions/checkout from 3 to 4 #433

name: Build and Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: true
matrix:
node-version: [18]
experimental: [ false ]
include:
- node-version: 19
experimental: true
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: yarn install
- run: yarn test --ci