Skip to content

feature/Add_GH_Actions #3

feature/Add_GH_Actions

feature/Add_GH_Actions #3

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 20.3.1
- name: Install node packages
run: yarn
- name: Check lint
run: yarn check:lint
- name: Check prettier
run: yarn check:prettier
- name: Build
run: yarn build