Skip to content

Merge pull request #228 from keybase/dependabot/npm_and_yarn/cipher-b… #35

Merge pull request #228 from keybase/dependabot/npm_and_yarn/cipher-b…

Merge pull request #228 from keybase/dependabot/npm_and_yarn/cipher-b… #35

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22, 24]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Build project
run: make build
- name: Run tests
run: make test-server