chore(deps): bump google.golang.org/grpc from 1.48.0 to 1.56.3 in /src/code-examples/go/state-current #316
Workflow file for this run
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: Quality checks | |
on: pull_request | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: "14.18.3" | |
cache: "npm" | |
- name: Node version | |
run: node --version | |
# cache node_modules | |
- name: Cache dependencies | |
uses: actions/cache@v2 | |
id: node-modules-cache | |
with: | |
path: | | |
**/node_modules | |
key: ${{ runner.os }}-node_modules-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node_modules- | |
- name: Node dependencies | |
if: steps.node-modules-cache.outputs.cache-hit != 'true' | |
run: npm i -f | |
- name: Build | |
run: npm run build | |
quality-checks: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Links check | |
uses: becheran/mlc@19f75f995fe510740f15221dc82d749af45b522f # v0.14.3 | |
with: | |
args: > | |
./src/master | |
-r ./src/.vuepress/public/ | |
--ignore-links | |
https://github.com/codenotary/immudb4dotnet/issues/new | |
https://github.com/codenotary/immu-js | |
https://twitter.com/intent/tweet* | |
https://www.php.net/manual/en/book.pgsql.php | |
--match-file-extension | |
- name: Check of configuration options list | |
run: ./checks/configuration.sh | |
examples-check-go: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: '1.18' | |
- name: Check go examples | |
run: ./checks/examples-go.sh |