Skip to content

Truly decoupled plugins, each importing game stores independently ins… #40

Truly decoupled plugins, each importing game stores independently ins…

Truly decoupled plugins, each importing game stores independently ins… #40

Workflow file for this run

name: Build
on:
pull_request:
branches: [main]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'yarn'
- run: yarn install
- run: yarn build
# test lol