Skip to content

PP-12244: Resolve GitHub Actions deprecation warnings #897

PP-12244: Resolve GitHub Actions deprecation warnings

PP-12244: Resolve GitHub Actions deprecation warnings #897

Workflow file for this run

name: Run tests and static build
on:
pull_request:
workflow_call:
workflow_dispatch:
permissions:
contents: read
jobs:
run-tests:
name: Unit tests and static build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b
- name: Setup Ruby
uses: ruby/setup-ruby@7bae1d00b5db9166f4f0fc47985a3a5702cb58f0
with:
ruby-version: '.ruby-version'
bundler-cache: true
- name: Setup Node
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: Install npm dependencies
run: npm ci
- name: Run tests
run: npm test
- name: Build static site
run: bundle exec middleman build --verbose