Skip to content

Merge pull request #828 from ocean-tech-ship/feat/#760-implement-feed… #891

Merge pull request #828 from ocean-tech-ship/feat/#760-implement-feed…

Merge pull request #828 from ocean-tech-ship/feat/#760-implement-feed… #891

Workflow file for this run

name: CI
on:
push:
branches-ignore:
- main
- development
pull_request:
branches-ignore:
- main
- development
jobs:
test:
runs-on: ${{ matrix.os }}
timeout-minutes: 15
strategy:
matrix:
os: [ ubuntu-latest,windows-latest,macos-latest ]
node: [ 16.13 ]
steps:
- name: Checkout 🛎
uses: actions/checkout@v3.0.2
- name: Setup node env 🏗
uses: actions/setup-node@v3.1.1
with:
node-version: ${{ matrix.node }}
cache: 'yarn'
- name: Install dependencies 👨🏻‍💻
run: yarn install --frozen-lockfile --network-timeout 60000
# - name: Run linter 👀
# run: yarn lint
- name: Run tests 🧪
run: yarn test:ci
- name: Upload test artifacts 🦴
uses: actions/upload-artifact@v3
if: success() || failure()
with:
name: test-results-${{ matrix.os }}
path: reports/jest-*.xml
# Disabled since we have almost no tests right now
#- name: Report code coverage 🔍
# uses: romeovs/lcov-reporter-action@v0.2.21
# with:
# lcov-file: coverage/lcov.info
# github-token: ${{ secrets.GITHUB_TOKEN }}
build:
runs-on: ${{ matrix.os }}
timeout-minutes: 15
strategy:
matrix:
os: [ ubuntu-latest,windows-latest,macos-latest ]
node: [ 16.13 ]
steps:
- name: Checkout 🛎
uses: actions/checkout@v3.0.2
- name: Setup node env 🏗
uses: actions/setup-node@v3.1.1
with:
node-version: ${{ matrix.node }}
cache: 'yarn'
- name: Install dependencies 👨🏻‍💻
run: yarn install --frozen-lockfile --network-timeout 60000
- name: Building project 🚧
run: yarn build