Skip to content

Merge branch 'production' of github.com:interflux-electronics/interfl… #144

Merge branch 'production' of github.com:interflux-electronics/interfl…

Merge branch 'production' of github.com:interflux-electronics/interfl… #144

Workflow file for this run

---
name: Continuous Integration
on:
push:
branches:
- '**'
- '!production'
concurrency:
group: ci-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 14.x
cache: yarn
- run: echo "HOST=interflux.com" > .env
- run: echo "LANGUAGE=en" >> .env
- run: echo "PORT=4700" >> .env
- run: yarn install --frozen-lockfile
- run: yarn test