This repository has been archived by the owner on Jun 10, 2024. It is now read-only.
Bump @types/node from 18.11.8 to 20.4.4 #260
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: happi-graph | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source | |
uses: actions/[email protected] | |
- name: Check if version has been updated | |
id: check | |
uses: EndBug/version-check@v2 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "16.13.0" | |
- name: Report npm and node version | |
run: | | |
node -v | |
npm -v | |
- name: Install Dependencies | |
run: npm install | |
- name: Lint | |
run: npm run lint | |
- name: Test | |
run: npm run test | |
- name: Build | |
run: npm run build | |
env: | |
NODE_OPTIONS: "--max_old_space_size=6144" |