Skip to content

Commit

Permalink
Merge pull request #31 from vodori/feature/upgrades
Browse files Browse the repository at this point in the history
dependency upgrades
  • Loading branch information
travisstom committed Sep 14, 2023
2 parents 9f74606 + 0565ea2 commit 324140f
Show file tree
Hide file tree
Showing 6 changed files with 5,787 additions and 1,261 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Build & Test

on:
push:
workflow_dispatch:

jobs:

frontend-build-and-test:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3

- name: NPM setup
uses: actions/setup-node@v3
with:
node-version: '20.4.0'

- name: Cache node packages
uses: actions/cache@v3
with:
path: /node_modules
key: ${{ runner.os }}-npm-${{ hashFiles('angular/package-lock.json') }}
restore-keys: ${{ runner.os }}-npm-

- name: Frontend build and test
run: |
npm install
npm run build
npm run test
6 changes: 0 additions & 6 deletions .travis.yml

This file was deleted.

Loading

0 comments on commit 324140f

Please sign in to comment.