Skip to content

chore(deps-dev): bump @babel/traverse from 7.20.5 to 7.23.2 #28

chore(deps-dev): bump @babel/traverse from 7.20.5 to 7.23.2

chore(deps-dev): bump @babel/traverse from 7.20.5 to 7.23.2 #28

Workflow file for this run

name: CI - Merge and Release
on:
push:
branches: ['main']
pull_request:
branches: ['main']
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install Dependencies
run: npm install
- name: Fixing non-standard Scripts
run: npx eslint . --fix
- name: Run Tests
run: npm run test