Skip to content

Commit

Permalink
merge
Browse files Browse the repository at this point in the history
  • Loading branch information
MitchStevens committed Jan 9, 2024
2 parents a274703 + 1f346c9 commit ca555e5
Show file tree
Hide file tree
Showing 48 changed files with 54,006 additions and 980 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
on:
push:
# Sequence of patterns matched against refs/tags
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10

name: Create Release

jobs:
build:
name: Create Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: |
Changes in this Release
- First Change
- Second Change
draft: false
prerelease: false
28 changes: 28 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs

name: run tests

on:
push:
branches: [ "main" ]

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm install g purescript
- run: npm test
18 changes: 18 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"version": "0.1.0",
"configurations": [
{
"name": "build",
"request": "launch",
"runtimeArgs": [
"run",
"build"
],
"runtimeExecutable": "npm",
"skipFiles": [
"<node_internals>/**"
],
"type": "node"
}
]
}
25,490 changes: 25,490 additions & 0 deletions dist/abed.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/default.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#board-component {
width: 700px;
width: 600px;
aspect-ratio: 1 / 1;
border-spacing: 0px;
display: grid;
Expand Down Expand Up @@ -136,7 +136,7 @@
}
}
#abed {
width: 1060px;
width: 960px;
user-select: none;
background-color: beige;
}
Expand Down
2 changes: 1 addition & 1 deletion dist/less/board-component.less
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@board-width: 700px;
@board-width: 600px;

#board-component {
width: @board-width;
Expand Down
4 changes: 3 additions & 1 deletion docs/board.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,6 @@ stateDiagram
EvaluableBoard --> PseudoPiece
CompiledBoard --> PseudoPiece
Path
```
```

## attempting to
Loading

0 comments on commit ca555e5

Please sign in to comment.