Skip to content

Contest -> Challenge #86

Contest -> Challenge

Contest -> Challenge #86

Workflow file for this run

name: integration
on:
push:
branches:
- main
- Deployment
- test-case
pull_request:
branches:
- main
- Deployment
- test-case
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v4
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
# Install dependencies
- name: Install Dependencies
run: npm ci
# Build the project
- name: Build Project
run: npm run build --if-present
# Run tests
- name: Run Tests
run: npm test