Skip to content

Bump @babel/traverse from 7.14.5 to 7.23.3 #109

Bump @babel/traverse from 7.14.5 to 7.23.3

Bump @babel/traverse from 7.14.5 to 7.23.3 #109

Workflow file for this run

# Copyright 2022 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Test
on: [push, pull_request, workflow_dispatch]
jobs:
matrix:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12, 14]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm test
test:
needs: [matrix]
runs-on: ubuntu-latest
steps:
- run: echo "Test matrix finished"