Skip to content

Bump ol from 7.3.0 to 10.0.0 #282

Bump ol from 7.3.0 to 10.0.0

Bump ol from 7.3.0 to 10.0.0 #282

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [18, 20, 22]
steps:
- uses: actions/checkout@v4
with:
repository: EqualStreetNames/equalstreetnames
submodules: true
- uses: actions/checkout@v4
with:
path: global
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
working-directory: global
- run: npm run build
working-directory: global
- run: npm run parcel:build
working-directory: global
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm ci
- run: npm run lint --if-present