Skip to content

⬆️ doppler

⬆️ doppler #94

Workflow file for this run

name: Windows
on: [push, pull_request]
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
node-version: [14, 16, 18, 20, 21]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm i
npm test