Skip to content

Update actions/deploy-pages action to v5 #21

Update actions/deploy-pages action to v5

Update actions/deploy-pages action to v5 #21

Workflow file for this run

name: PR Build and Test Plugins
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- run: corepack enable
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: yarn
- run: yarn install --frozen-lockfile
- run: yarn run build
- run: yarn run format:ci
- run: yarn run lint
- run: yarn run test-coverage
- name: Coveralls
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}