Skip to content

ArthurStam is testing his merge request 🚀 #4

ArthurStam is testing his merge request 🚀

ArthurStam is testing his merge request 🚀 #4

Workflow file for this run

name: Merge Request checks
run-name: ${{ github.actor }} is testing his merge request 🚀
on:
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: yarn install --frozen-lockfile
- run: yarn build:package
- run: yarn build:storybook
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: yarn install --frozen-lockfile
- run: yarn lint:es
- run: yarn lint:css
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: yarn install --frozen-lockfile
- run: yarn test