Skip to content

Merge pull request #16 from NREL/issue-6-GH-testing #8

Merge pull request #16 from NREL/issue-6-GH-testing

Merge pull request #16 from NREL/issue-6-GH-testing #8

Workflow file for this run

name: CI Testing On PR into Develop Branch
on:
pull_request:
branches: [ "develop" , "main" ]
push:
branches: [ "develop" , "main" ]
jobs:
ubuntu-build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm install
- run: npm run build --if-present
- run: npm run test-ci