mirror of
https://github.com/joinmarket-webui/jam.git
synced 2026-08-19 13:18:30 +02:00
* deps: remove unused lib moving-letters * deps: update react-bootstrap from v2.4.0 to v2.5.0-beta.1 * deps: update react-router-bootstrap from v0.26.1 to v0.26.2 * deps: update bootstrap from v5.1.3 to v5.2.0 * dev: update node from v16.11.0 to v16.16.0 in GitHub build action * dev: harmonize options button styles on Receive and Earn page
38 lines
747 B
YAML
38 lines
747 B
YAML
name: Build
|
|
|
|
on:
|
|
# Run the build for pushes and pull requests targeting master
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
node-version: ['16.16.0']
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
# Setup Node
|
|
- name: Setup (Node.js ${{ matrix.node-version }})
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
# Install
|
|
- name: Install
|
|
run: npm ci
|
|
# Checks
|
|
- name: Lint
|
|
run: npm run lint
|
|
# Test
|
|
- name: Test
|
|
run: npm test
|
|
# Build
|
|
- name: Build
|
|
run: npm run build
|