Skip to content

[Snyk] Upgrade @bigcommerce/big-design from 0.36.2 to 0.38.2 #382

[Snyk] Upgrade @bigcommerce/big-design from 0.36.2 to 0.38.2

[Snyk] Upgrade @bigcommerce/big-design from 0.36.2 to 0.38.2 #382

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: |
npm i -g npm@8.13.1
npm ci
- name: Run Build
run: npm run build
- name: Lint Check
run: npm run lint --if-present
- name: Validate tests
run: npm run test --if-present