diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index 374d20c..5917458 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -25,6 +25,17 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 18 + + - name: Install node dependencies + run: npm ci + - name: Build + run: npm run build + - name: Test + run: npm run test + - name: Log in to the Container registry uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1 with: diff --git a/.nvmrc b/.nvmrc new file mode 100644 index 0000000..93d866f --- /dev/null +++ b/.nvmrc @@ -0,0 +1 @@ +v18.20.5