🤌 Update naming of frontend test gate

This commit is contained in:
Rune Harlyk
2024-03-17 14:49:58 +01:00
committed by Rune Harlyk
parent 46e0a47148
commit 5b8ae1d020
+35
View File
@@ -0,0 +1,35 @@
name: Frontend Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./app
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 'latest'
cache: 'pnpm'
cache-dependency-path: './app/pnpm-lock.yaml'
- name: Install dependencies
run: pnpm install
- name: Run tests
run: pnpm test