add CI test
ci / build (push) Failing after 42s
Details
ci / build (push) Failing after 42s
Details
This commit is contained in:
parent
a8c2e91fa0
commit
0a7d99f322
|
@ -0,0 +1,24 @@
|
|||
name: ci
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- 'main'
|
||||
schedule:
|
||||
- cron: '6 */12 * * *'
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
environment: docker
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
name: Check out code
|
||||
|
||||
- uses: actions/setup-node@v4
|
||||
name: Test the code
|
||||
with:
|
||||
node-version: '20.x'
|
||||
|
||||
- run: pnpm install --recursive
|
||||
- run: pnpm test --filter scout --filter link2cid
|
Loading…
Reference in New Issue