Skip to content

Completed cumulativeSum #239

Completed cumulativeSum

Completed cumulativeSum #239

Workflow file for this run

name: build and test
on: [push, pull_request]
jobs:
job:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Git config
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- name: Checkout repository and submodules
uses: actions/[email protected]
with:
submodules: recursive
- uses: actions/[email protected]
with:
node-version: '18.x'
- run: npm install
- run: npm run lint
- run: npm test
env:
CI: true