Skip to content

Bump launch-editor from 2.9.1 to 2.14.1 #303

Bump launch-editor from 2.9.1 to 2.14.1

Bump launch-editor from 2.9.1 to 2.14.1 #303

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the action will run. Triggers the workflow on push or pull request
# events
on: [push, pull_request]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4.1.7
- name: yarn install
uses: Borales/actions-yarn@v5.0.0
env:
SNYK_TOKEN: ${{secrets.SNYK_TOKEN}}
with:
# Yarn command
cmd: install
- name: yarn build
uses: Borales/actions-yarn@v5.0.0
with:
# Yarn command
cmd: build
- name: yarn test
uses: Borales/actions-yarn@v5.0.0
with:
# Yarn command
cmd: test