Skip to content
This repository has been archived by the owner on May 12, 2023. It is now read-only.

Merge pull request #759 from amazingrv/dependabot/npm_and_yarn/server… #1655

Merge pull request #759 from amazingrv/dependabot/npm_and_yarn/server…

Merge pull request #759 from amazingrv/dependabot/npm_and_yarn/server… #1655

Workflow file for this run

name: Node CI
on:
push:
branches: [main]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node_version: ['16', '18']
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
check-latest: true
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Run build
run: npm run build --if-present