Skip to content

Build(deps-dev): Bump @types/node from 18.19.5 to 20.11.28 in /Front #195

Build(deps-dev): Bump @types/node from 18.19.5 to 20.11.28 in /Front

Build(deps-dev): Bump @types/node from 18.19.5 to 20.11.28 in /Front #195

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 18
registry-url: "https://npm.pkg.github.com/@lucaswerey"
- name: Prepare .npmrc
run: echo "//npm.pkg.github.com/:_authToken=${{ secrets.NPM_TOKEN }}" > Front/.npmrc
- name: Install dependencies
run: cd Front && npm ci
- name: Run tests
run: cd Front && npm run test