Skip to content

fix: package.json to reduce vulnerabilities #888

fix: package.json to reduce vulnerabilities

fix: package.json to reduce vulnerabilities #888

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