fix: package.json to reduce vulnerabilities #892
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |