-
Notifications
You must be signed in to change notification settings - Fork 1
89 lines (84 loc) · 2.43 KB
/
bookmarks-rdflib-ci-cd.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
name: Bookmarks rdflib CI/CD
on:
push:
paths:
- bookmarks/rdflib/**
- .github/workflows/bookmarks-rdflib-ci-cd.yml
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./bookmarks/rdflib/
strategy:
matrix:
node-version: [ 20 ]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run lint
- run: npm run build
- run: npm test
- run: npm run test:e2e
- name: Save e2e test data
uses: actions/upload-artifact@v4
with:
name: e2e-test-data
path: |
bookmarks/rdflib/src/e2e-tests/.test-data/
retention-days: 1
- name: Save build
uses: actions/upload-artifact@v4
with:
name: build
path: |
bookmarks/rdflib/dist/
bookmarks/rdflib/README.md
bookmarks/rdflib/package.json
retention-days: 1
npm-publish:
if: github.ref == 'refs/heads/main'
needs: build
runs-on: ubuntu-latest
outputs:
prereleaseVersion: ${{ steps.prerelease.outputs.version }}
steps:
- uses: actions/download-artifact@v4
with:
name: build
- uses: actions/setup-node@v3
with:
node-version: lts/*
- uses: rlespinasse/github-slug-action@v4.4.1
- name: prerelease version
run: |
echo "::set-output name=version::$(npm version prerelease --preid ${GITHUB_SHA_SHORT} --no-git-tag-version)"
id: prerelease
- run: echo prerelease version is ${{ steps.prerelease.outputs.version }}
- uses: JS-DevTools/npm-publish@v3
name: Publish @solid-data-modules/bookmarks-rdflib
with:
token: ${{ secrets.NPM_TOKEN }}
tag: ${{ env.GITHUB_REF_SLUG }}
access: public
npm-release-latest:
if: github.ref == 'refs/heads/main'
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
with:
name: build
- uses: actions/setup-node@v3
with:
node-version: lts/*
- uses: JS-DevTools/npm-publish@v3
name: Release @solid-data-modules/bookmarks-rdflib
with:
token: ${{ secrets.NPM_TOKEN }}
tag: latest
access: public