Skip to content

test: test test test #70

test: test test test

test: test test test #70

Workflow file for this run

name: EasyRS CI
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [main]
pull_request:
branches: [main]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
react-app-workflow:
# 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:
- uses: actions/checkout@v2
- name: Use Node.js 18.x
uses: actions/setup-node@v2
with:
node-version: 18.x
- name: install
run: yarn
- name: test
run: yarn test
- name: format
run: yarn prettier
- name: lint
run: yarn lint
- name: build
run: yarn build