Skip to content

Bump @babel/traverse from 7.16.8 to 7.23.9 (#88) #288

Bump @babel/traverse from 7.16.8 to 7.23.9 (#88)

Bump @babel/traverse from 7.16.8 to 7.23.9 (#88) #288

Workflow file for this run

name: Check
on:
push:
branches:
- '**'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16'
cache: 'yarn'
- name: Install dependecies
run: yarn install --frozen-lockfile
- name: Run lint script
run: yarn lint
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16'
cache: 'yarn'
- name: Install dependecies
run: yarn install --frozen-lockfile
- name: Run build script
run: yarn build
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16'
cache: 'yarn'
- name: Install dependecies
run: yarn install --frozen-lockfile
- name: Run test script
run: yarn test
e2e:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16'
cache: 'yarn'
- name: Install dependecies
run: yarn install --frozen-lockfile
- name: Start examples and run e2e tests
run: yarn e2e