Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Build App

on:
pull_request:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['14']
name: Run build script (Node ${{ matrix.node }})

steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Set up node
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}

- name: Install dependencies
run: npm ci

- name: Build App
run: npm run build
7 changes: 5 additions & 2 deletions .github/workflows/i18nExtract.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,11 @@ on:

jobs:
extract:
name: Block on unextracted Changes
runs-on: ubuntu-latest
strategy:
matrix:
node: ['14']
name: Block on unextracted Changes (Node ${{ matrix.node }})

steps:
- name: Checkout Repository
Expand All @@ -18,7 +21,7 @@ jobs:
- name: Set up node
uses: actions/setup-node@v1
with:
node-version: '12'
node-version: ${{ matrix.node }}

- name: Install dependencies
run: npm ci
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/standard_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,11 @@ on:

jobs:
linting:
name: Block on linting errors
runs-on: ubuntu-latest
strategy:
matrix:
node: ['14']
name: Block on linting errors (Node ${{ matrix.node }})

steps:
- name: Checkout Repository
Expand All @@ -18,7 +21,7 @@ jobs:
- name: Set up node
uses: actions/setup-node@v1
with:
node-version: '12'
node-version: ${{ matrix.node }}

- name: Install dependencies
run: npm ci
Expand Down
13 changes: 0 additions & 13 deletions .travis.yml

This file was deleted.