Skip to content
This repository has been archived by the owner on Apr 30, 2024. It is now read-only.

Bump actions/setup-node from 3 to 4 #363

Bump actions/setup-node from 3 to 4

Bump actions/setup-node from 3 to 4 #363

Workflow file for this run

name: Build & Test
on: [ push ]
jobs:
build:
name: Build 🏗️ & Test 🧪
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Initialize Node
uses: actions/setup-node@v4
with:
node-version: 14
registry-url: https://registry.npmjs.org/
- name: Install deps
run: npm ci
- name: Build application
run: npm run build
- name: Run tests
run: npm run test