Skip to content

🚨 [security] Update all of babel7 7.22.10 → 7.24.7 (minor) #149

🚨 [security] Update all of babel7 7.22.10 → 7.24.7 (minor)

🚨 [security] Update all of babel7 7.22.10 → 7.24.7 (minor) #149

Workflow file for this run

name: Node.js CI
on:
pull_request:
branches:
- 'main'
push:
branches:
- 'main'
- 'feature/**'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x,18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Npm install
run: npm ci
- name: Lint
run: npm run tslint
- name: Unit test
run: npm test
- name: Build
run: npm run build
- name: Codecov
uses: codecov/codecov-action@v2.1.0