Compare commits
2 commits
8afce56b9e
...
7e86e6fe86
| Author | SHA1 | Date | |
|---|---|---|---|
| 7e86e6fe86 | |||
| 2debdf5e46 |
3 changed files with 3221 additions and 2 deletions
15
.forgejo/workflows/test.yaml
Normal file
15
.forgejo/workflows/test.yaml
Normal file
|
|
@ -0,0 +1,15 @@
|
||||||
|
on: [push]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
test:
|
||||||
|
runs-on: docker
|
||||||
|
container:
|
||||||
|
image: node:latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- run: corepack enable
|
||||||
|
- uses: actions/setup-node@v4
|
||||||
|
with:
|
||||||
|
cache: "yarn"
|
||||||
|
- run: yarn install
|
||||||
|
- run: yarn coverage
|
||||||
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -13,5 +13,3 @@ lib/
|
||||||
yarn-error.log
|
yarn-error.log
|
||||||
.pnp*
|
.pnp*
|
||||||
node_modules/
|
node_modules/
|
||||||
|
|
||||||
yarn.lock
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue