Skip to content

Bump @babel/traverse from 7.20.10 to 7.27.0 in /examples/reactnative … #165

Bump @babel/traverse from 7.20.10 to 7.27.0 in /examples/reactnative …

Bump @babel/traverse from 7.20.10 to 7.27.0 in /examples/reactnative … #165

Workflow file for this run

name: Test
on:
push:
branches:
- master
- develop
pull_request:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node-version: [14.x, 16.x, 18.x]
steps:
- uses: actions/checkout@v3
- name: Setup node ${{ matrix.node-version }} in ${{ runner.OS }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Cache Node.js modules
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.OS }}-${{ matrix.node-version }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-${{ matrix.node-version }}-node-
${{ runner.OS }}-${{ matrix.node-version }}-
${{ runner.OS }}-
- name: Install node modules
run: |
npm install
npm run lerna-bootstrap
- run: npm run test:ci
- run: npm run test:coverage