Skip to content

Bump @babel/traverse from 7.14.2 to 7.23.2 #40

Bump @babel/traverse from 7.14.2 to 7.23.2

Bump @babel/traverse from 7.14.2 to 7.23.2 #40

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
steps:
- uses: actions/checkout@v3
- name: Use node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Cache node_modules
id: cache-modules
uses: actions/cache@v3
with:
path: node_modules
key: ${{ matrix.node-version }}-${{ runner.OS }}-build-${{ hashFiles('package.json') }}
- name: Install
if: steps.cache-modules.output.cache-hit != 'true'
run: npm install
- name: Lint, test & build
run: npm run test
- name: Bundle
run: npm run bundle