Skip to content

Commit 5c54c7d

Browse files
committed
testing
1 parent 6b471c5 commit 5c54c7d

File tree

3 files changed

+30
-7
lines changed

3 files changed

+30
-7
lines changed

.github/workflows/lint.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,6 @@ on:
77
pull_request:
88

99
jobs:
10-
lint:
11-
runs-on: ubuntu-latest
12-
steps:
13-
- uses: actions/checkout@v4
14-
- uses: asdf-vm/actions/install@v3
15-
- run: scripts/lint.bash
16-
1710
actionlint:
1811
runs-on: ubuntu-latest
1912
steps:
File renamed without changes.

justfile

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
export PATH := justfile_directory() + "/node_modules/.bin:" + env_var('PATH')
2+
3+
default:
4+
@just --list
5+
6+
setup:
7+
@echo ""
8+
@echo "🍜 Setting up project"
9+
@echo ""
10+
11+
./template/tools.sh
12+
13+
@echo ""
14+
@echo "👍 Done"
15+
@echo ""
16+
17+
# runs nekos/act with the current branch
18+
test:
19+
@echo ""
20+
@echo "🧪 Running tests"
21+
@echo ""
22+
23+
act \
24+
-P ubuntu-latest=nektos/act-environments-ubuntu:18.04 \
25+
--secret-file .secrets \
26+
--env-file .env
27+
28+
@echo ""
29+
@echo "👍 Done"
30+
@echo ""

0 commit comments

Comments
 (0)