File tree Expand file tree Collapse file tree 4 files changed +27
-6
lines changed Expand file tree Collapse file tree 4 files changed +27
-6
lines changed Original file line number Diff line number Diff line change 1+ name : Test
2+
3+ on :
4+ push :
5+
6+ jobs :
7+ test :
8+ runs-on : ubuntu-latest
9+ steps :
10+ - name : Checkout code
11+ uses : actions/checkout@v5
12+ - name : Set up Node.js
13+ uses : actions/setup-node@v4
14+ with :
15+ node-version : 20
16+ - run : make test
Original file line number Diff line number Diff line change 55 hljs . highlightAll ( ) ;
66</ script >
77< pre >
8- < code class =" language-rascript " >
8+ < code >
99// Monster Max
1010// #ID = 4111
1111
Original file line number Diff line number Diff line change @@ -13,6 +13,10 @@ if [ $? -ne 0 ]; then
1313fi
1414cd ..
1515diff -q " dist/rascript.min.js" " ${HIGHLIGHTJS_RASCRIPT} /dist/rascript.min.js"
16+ if [ $? -ne 0 ]; then
17+ exit 1
18+ fi
19+ diff -q " dist/rascript.es.min.js" " ${HIGHLIGHTJS_RASCRIPT} /dist/rascript.es.min.js"
1620if [ $? -ne 0 ]; then
1721 exit 1
1822fi
Original file line number Diff line number Diff line change 1- /**
2- * Language: RAScript
3- * Contributors:
4- * Joshua Raphael
5- */
1+ /*
2+ Language: RAScript
3+ Author: Joshua Raphael
4+ Description: Syntax grammar for RAScript, a RetroAchievements.org DSL
5+ Category: syntax
6+ */
67export default function ( hljs ) {
78 return {
89 case_insensitive : false ,
You can’t perform that action at this time.
0 commit comments