Skip to content

Initial commit with 1.0.4 #2

Initial commit with 1.0.4

Initial commit with 1.0.4 #2

Workflow file for this run

name: App Checks
on:
# Trigger on any push to the main branch (ie, PR merge)
push:
branches:
- main
# Trigger on any push to a PR based off of main
pull_request:
branches:
- main
jobs:
checks:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'yarn'
- name: Yarn install
run: yarn install