Skip to content

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

chore(deps-dev): bump @babel/traverse from 7.22.20 to 7.23.4

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

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master, development]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Installing Dependencies
run: npm install
- name: Running prettier
run: npm run prettier:fix
- name: Running eslint
run: npm run lint:fix
- name: Running tests
run: npm run test
- name: Building
run: npm run build