Skip to content

Merge pull request #64 from chodorowicz/upgrade-node-version-used-for… #114

Merge pull request #64 from chodorowicz/upgrade-node-version-used-for…

Merge pull request #64 from chodorowicz/upgrade-node-version-used-for… #114

Workflow file for this run

name: node-ci
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Test
run: npm run test
- name: Prettier check
run: npm run prettier:check