Skip to content

fix: delete typename from metadata.recordModel ( MAPCO-6053 ) #1649

fix: delete typename from metadata.recordModel ( MAPCO-6053 )

fix: delete typename from metadata.recordModel ( MAPCO-6053 ) #1649

Workflow file for this run

name: CI
on: [pull_request]
jobs:
build_and_test:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest]
node-version: [16.13.x]
steps:
- name: checkout
uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install yarn
run: |
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
sudo apt-get update
sudo apt-get install --no-install-recommends yarn
- name: Install dependecies
run: yarn
- name: Lint
run: yarn run eslint:check
- name: Test
run: yarn test
security:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Run Snyk to check for vulnerabilities
uses: snyk/actions/node@master
continue-on-error: true
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}