build(deps): bump @tpluscode/rdf-string from 1.3.0 to 1.3.4 #566
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '18' | |
- run: npm ci | |
- uses: tpluscode/[email protected] | |
with: | |
version: v3.0.26 | |
healthcheck: http://db.talos.lndo.site/ | |
timeout: 30000 | |
- run: npx c8 --reporter lcovonly --reporter text npm test | |
- name: Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
smoke-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '18' | |
- run: npm ci | |
- uses: tpluscode/[email protected] | |
with: | |
version: v3.0.26 | |
healthcheck: http://db.talos.lndo.site/ | |
timeout: 30000 | |
- run: npx tsc | |
- run: npx talos put test-resources --endpoint http://db.talos.lndo.site/repositories/tests --base http://talos.lndo.site -u minos -p password | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '18' | |
- run: npm ci | |
- run: npx wsrun -mc prepack | |
- name: Smoke test bin | |
run: node ./packages/cli/bin/talos.js help | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '18' | |
- run: npm ci | |
- run: yarn lint |