Skip to content

chore: bump peter-evans/create-pull-request from 7.0.2 to 7.0.3 in /.github/actions/pr #5941

chore: bump peter-evans/create-pull-request from 7.0.2 to 7.0.3 in /.github/actions/pr

chore: bump peter-evans/create-pull-request from 7.0.2 to 7.0.3 in /.github/actions/pr #5941

Workflow file for this run

name: ' 🧪 Build and Test'
on:
pull_request:
paths-ignore:
- 'website/**'
push:
branches:
- main
paths-ignore:
- 'website/**'
jobs:
build-test:
strategy:
matrix:
os:
# - macos-latest # Disabled because github actions randomly fails on macos
- ubuntu-latest
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ vars.DEFAULT_NODE_VERSION }}
cache: npm
- run: npm ci
- run: npm run build
- run: npm run test
# Ensure the repository is clean after build & test
# - run: git --no-pager diff --compact-summary --exit-code
test-vsce-build:
strategy:
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ vars.DEFAULT_NODE_VERSION }}
cache: npm
- run: npm ci
- run: npm run test-vsce-build