Skip to content

Bump @babel/traverse from 7.11.5 to 7.23.2 #9

Bump @babel/traverse from 7.11.5 to 7.23.2

Bump @babel/traverse from 7.11.5 to 7.23.2 #9

Workflow file for this run

name: CI
on:
pull_request:
jobs:
lint:
name: Lint code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'npm'
- run: npm ci
- run: npm run eslint
build-and-test:
name: Build and test code
runs-on: ubuntu-latest
needs: lint
strategy:
matrix:
node-version: [14.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 }}
cache: 'npm'
- run: npm ci
- run: npm run build
- run: npm run test