Skip to content

dependency and node build version update #89

dependency and node build version update

dependency and node build version update #89

Workflow file for this run

name: Build and Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
node_version:
- '20.x'
runs-on: ${{ matrix.os }}
name: Node ${{ matrix.node_version }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node_version }}
- run: yarn install
- run: yarn build
env:
NODE_ENV: test
- run: yarn test-ci
env:
NODE_ENV: test