Skip to content

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

feat: upgrade project dependencies, nodejs version and fastify

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

Workflow file for this run

name: Validate Lint & build.
on:
pull_request:
branches:
- main
jobs:
test-and-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "22"
registry-url: https://npm.pkg.github.com
scope: "@blastorg"
- name: Add GH package repository
run: |
echo "@blastorg:registry = https://npm.pkg.github.com" > ~/.npmrc
echo "//npm.pkg.github.com/:_authToken=${{ secrets.GH_PACKAGES_READ_TOKEN }}" >> ~/.npmrc
- run: npm ci
- run: npm run lint
- run: npm run test
- run: npm run build