This repository has been archived by the owner on Apr 30, 2024. It is now read-only.
Bump actions/checkout from 3 to 4 #208
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build & Test | |
on: [ push ] | |
jobs: | |
build: | |
name: Build & Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Initialize Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 12 | |
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 |