Skip to content

Bump @babel/traverse from 7.22.11 to 7.23.2 #134

Bump @babel/traverse from 7.22.11 to 7.23.2

Bump @babel/traverse from 7.22.11 to 7.23.2 #134

Workflow file for this run

# Reference: <https://help.github.com/en/actions/language-and-framework-guides/using-nodejs-with-github-actions>
name: Build
on:
pull_request:
branches: [ master ]
push:
branches: [ master ]
jobs:
validate:
runs-on: windows-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: Cache Node.js modules
uses: actions/cache@v1
with:
path: "%AppData%\npm-cache" # npm cache files are stored under the AppData folder on Windows
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- name: npm install, build, and test
run: |
npm install
npm run build
npm test
env:
CI: true