Skip to content

chore(deps): bump _data/spdx from 38193d6 to f56d487 #1429

chore(deps): bump _data/spdx from 38193d6 to f56d487

chore(deps): bump _data/spdx from 38193d6 to f56d487 #1429

Workflow file for this run

name: Build and test website
on:
push:
branches-ignore:
- "dependabot/**"
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Main repo
uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Build with Jekyll
run: bundle exec jekyll build
- name: Run HTMLProofer
run: bundle exec htmlproofer --enforce-https false --disable-external --allow-hash-href ./_site
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
cache: npm
- name: Install NPM dependencies
run: npm ci
- name: Run HTML5 Validator
run: npm run lint:html
- name: Run Cypress tests
run: |
bundle exec jekyll serve --detach
npm run cypress:run