Skip to content

Bump @babel/traverse from 7.9.0 to 7.23.2 (#90) #350

Bump @babel/traverse from 7.9.0 to 7.23.2 (#90)

Bump @babel/traverse from 7.9.0 to 7.23.2 (#90) #350

Workflow file for this run

name: test
on:
push:
paths-ignore:
- "**.md"
pull_request:
branches: "**"
jobs:
build:
name: Test on node ${{ matrix.node-version }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [14.x]
os: [ubuntu-latest]
steps:
- name: Use Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- uses: actions/checkout@v1
- name: Cache node modules
uses: actions/cache@v1
id: cache
with:
path: node_modules
key: ${{ runner.OS }}-build-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.OS }}-build-${{ env.cache-name }}-
${{ runner.OS }}-build-
${{ runner.OS }}-
- name: Install dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: |
yarn install
- name: Run tests
run: |
yarn run coverage
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}