Skip to content

Commit

Permalink
Initial commit with 1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
t27duck committed Jun 2, 2023
0 parents commit 2c7d315
Show file tree
Hide file tree
Showing 4 changed files with 416 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/app-checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
9 changes: 9 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"name": "app",
"private": "true",
"dependencies": {
"@hotwired/stimulus": "^3.2.1",
"esbuild": "^0.17.19",
"esbuild-rails": "^1.0.4"
}
}
Loading

0 comments on commit 2c7d315

Please sign in to comment.