From d6e8b857b855a24c5b7d114e394c2d15e851bfa9 Mon Sep 17 00:00:00 2001 From: Aaron Yarborough Date: Mon, 27 Jan 2025 13:10:15 +0000 Subject: [PATCH] ci: improve pipeline --- .github/workflows/docker-image.yml | 11 +++++++++++ .nvmrc | 1 + 2 files changed, 12 insertions(+) create mode 100644 .nvmrc 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