Skip to content

fix: Actions update #24

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@ jobs:
matrix:
include:
- php: '7.4'
os: ubuntu-18.04
os: ubuntu-22.04
- php: '8.0'
os: ubuntu-18.04
os: ubuntu-22.04
- php: '8.1'
os: ubuntu-18.04
os: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '14.15.3' # renovate:keep-up-to-date
node-version: '16.14.2' # renovate:keep-up-to-date
- name: Install npm dependencies
run: npm ci
- name: Setup PHP
Expand All @@ -32,6 +32,8 @@ jobs:
php-version: ${{ matrix.php }}
extensions: ${{ matrix.xdebug }}, ast
tools: composer
- name: Php Lint
uses: michaelw90/[email protected]
- name: Composer Install
run: COMPOSER_ROOT_VERSION=dev-master composer install --prefer-dist --no-interaction
- name: phpcs
Expand All @@ -55,7 +57,7 @@ jobs:
# - name: Setup Node.js
# uses: actions/setup-node@v2
# with:
# node-version: '14.15.3' # renovate:keep-up-to-date
# node-version: '16.14.2' # renovate:keep-up-to-date
# - name: Install npm dependencies
# run: npm ci
# - name: Build VS Code extension
Expand Down
Loading