Skip to content

Adding workflow to build app #1

Adding workflow to build app

Adding workflow to build app #1

name: Build app
on:
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'yarn'
- name: Install dependencies
run: yarn install
- name: Run tests
run: yarn build