Skip to content

Build(deps-dev): bump @babel/preset-env from 7.22.5 to 7.23.5 #198

Build(deps-dev): bump @babel/preset-env from 7.22.5 to 7.23.5

Build(deps-dev): bump @babel/preset-env from 7.22.5 to 7.23.5 #198

Workflow file for this run

name: Node.js CI
on:
pull_request:
branches: main
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
node: [ 16.x, 18.x ]
steps:
- name: Check out project
uses: actions/checkout@v2
- name: Set up Node.js ${{ matrix.node }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: npm ci
- name: Run test scripts
run: npm test
- name: Build production website
run: npm run build