Skip to content

feat: STRF-11900 Bump paper and handlebars for node 20 #907

feat: STRF-11900 Bump paper and handlebars for node 20

feat: STRF-11900 Bump paper and handlebars for node 20 #907

name: Tests
on:
pull_request:
branches: [master, main, release-**]
jobs:
build:
strategy:
matrix:
node: [22.x]
os: ['windows-latest']
env:
TITLE: ${{ github.event.pull_request.title }}
runs-on: ${{ matrix.os }}
steps:
- name: Install python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Checkout code
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Choco help
uses: crazy-max/ghaction-chocolatey@v3
with:
args: -h
- run: choco install visualstudio2019-workload-vctools -y
# - run: echo "; msvs_version=2022" >> ~/.npmrc
# - run: npm config get msvs_version
# - run: npm config set msvs_version 2019 --global
# - run: npm config get msvs_version
# - run: powershell "npm i -g windows-build-tools"
- name: Install Dependencies
run: npm ci
- name: Lint the code
run: npm run lint
- name: Run tests
run: npm run test-with-coverage