Skip to content

Bump typescript from 5.5.2 to 5.5.4 #224

Bump typescript from 5.5.2 to 5.5.4

Bump typescript from 5.5.2 to 5.5.4 #224

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-brussels:
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: website
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
working-directory: website
- run: npm run build:belgium:brussels
working-directory: website
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm ci
- run: npm run lint