Skip to content

Update nodejs

Update nodejs #281

Workflow file for this run

name: Build configs
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [16, 18, 19]
config: ["configs/ghostery.js", "configs/user-agent-ios.js"]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: ./fern.js build ${{ matrix.config }}