Skip to content

Merge pull request #734 from Abhiek187/dependabot/npm_and_yarn/octoki… #1732

Merge pull request #734 from Abhiek187/dependabot/npm_and_yarn/octoki…

Merge pull request #734 from Abhiek187/dependabot/npm_and_yarn/octoki… #1732

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, 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:
name: Build and Test 🔧
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- run: npm ci
- run: npm run lint
- run: npm run build --if-present
- run: npm test
# If the tests were successful and we're pushing to main, deploy to GitHub pages
deploy:
name: Deploy 🚀
runs-on: ubuntu-latest
needs: build
if: github.event_name == 'push'
steps:
- uses: actions/checkout@v4
- run: npm ci
- run: npm run build
- uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages # the branch the action should deploy to
folder: build # the folder the action should deploy