Skip to content
This repository has been archived by the owner on Apr 25, 2024. It is now read-only.

Bump @babel/traverse from 7.18.13 to 7.24.0 #53

Bump @babel/traverse from 7.18.13 to 7.24.0

Bump @babel/traverse from 7.18.13 to 7.24.0 #53

Workflow file for this run

name: Continuous Build
on:
push:
pull_request:
branches:
- main
types: [opened, synchronize, reopened]
env:
TARGET_NODE_VERSION: '16.17.0'
jobs:
# documentation:
# name: Check documentation
# runs-on: ubuntu-latest
# steps:
# - name: Clone
# uses: actions/checkout@v2
# - name: Check hyperlinks
# uses: gaurav-nelson/github-action-markdown-link-check@v1
# with:
# config-file: .github/workflows/mlc_config.json
lint-compile:
name: Lint, Build
runs-on: ubuntu-latest
steps:
- name: Clone
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: ${{ env.TARGET_NODE_VERSION }}
cache: 'yarn'
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint
- name: Compile
run: yarn compile
# test-e2e:
# name: Test e2e
# runs-on: ubuntu-latest
# # Don't run twice for a push within an internal PR
# if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
# steps:
# - name: Clone
# uses: actions/checkout@v2
# - name: Setup Node
# uses: actions/setup-node@v2
# with:
# node-version: ${{ env.TARGET_NODE_VERSION }}
# cache: 'yarn'
# - name: Install Dependencies
# run: yarn install --frozen-lockfile
# - name: Run testing services
# run: yarn dev:background
# - name: Test E2E
# run: yarn test:e2e
# required-checks-passed:
# name: All required checks passed
# runs-on: ubuntu-latest
# needs: [documentation, lint-compile]
# steps:
# - run: exit 0