-
Notifications
You must be signed in to change notification settings - Fork 18
52 lines (42 loc) · 1.08 KB
/
build.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
name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v2
with:
node-version: 20
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2.0
- uses: jwlawson/[email protected]
with:
cmake-version: "3.16.x"
- name: Install dependencies
run: |
bundle install
yarn install --pure-lockfile
- name: rspec
run: bundle exec rake spec
- name: cucumber
run: bundle exec rake features
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs
enable_jekyll: true
- uses: dawidd6/action-publish-gem@v1
continue-on-error: true
if: ${{ github.ref == 'refs/heads/main' }}
with:
api_key: ${{secrets.RUBYGEMS_API_KEY}}
github_token: ${{secrets.GITHUB_TOKEN}}