Skip to content

feat: upgrade project dependencies, nodejs version and fastify #14

feat: upgrade project dependencies, nodejs version and fastify

feat: upgrade project dependencies, nodejs version and fastify #14

Workflow file for this run

name: Validate Lint & build.
on:
pull_request:
branches:
- main
jobs:
test-and-build:
runs-on: ubuntu-latest
env:
NODE_AUTH_TOKEN: ${{ secrets.GH_PACKAGES_READ_TOKEN }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "22"
registry-url: https://npm.pkg.github.com
scope: "@blastorg"
- run: npm ci
- run: npm run lint
- run: npm run test
- run: npm run build