mirror of
https://github.com/RoboSats/robosats.git
synced 2025-01-19 04:31:35 +00:00
43 lines
862 B
YAML
43 lines
862 B
YAML
|
name: Frontend Tests
|
||
|
|
||
|
on:
|
||
|
workflow_dispatch:
|
||
|
push:
|
||
|
branches: [ "main" ]
|
||
|
paths: [ "frontend" ]
|
||
|
pull_request:
|
||
|
branches: [ "main" ]
|
||
|
paths: [ "frontend" ]
|
||
|
|
||
|
concurrency:
|
||
|
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
|
||
|
cancel-in-progress: true
|
||
|
|
||
|
permissions:
|
||
|
contents: read
|
||
|
pull-requests: read
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ubuntu-latest
|
||
|
env:
|
||
|
DEVELOPMENT: 1
|
||
|
|
||
|
steps:
|
||
|
- name: 'Checkout'
|
||
|
uses: actions/checkout@v3
|
||
|
- name: 'Setup node'
|
||
|
uses: actions/setup-node@v3
|
||
|
with:
|
||
|
node-version: 16.16.0
|
||
|
cache: npm
|
||
|
cache-dependency-path: frontend/package-lock.json
|
||
|
- name: 'Install NPM Dependencies'
|
||
|
run: |
|
||
|
cd frontend
|
||
|
npm install
|
||
|
- name: 'Tests'
|
||
|
run: |
|
||
|
cd frontend
|
||
|
npm test
|