-
Notifications
You must be signed in to change notification settings - Fork 176
30 lines (29 loc) · 1 KB
/
next-drupal.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
name: next-drupal
on:
push:
pull_request_target:
types: [opened, reopened, synchronize]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{github.event.pull_request.head.ref}}
repository: ${{github.event.pull_request.head.repo.full_name}}
- name: Install modules
run: yarn
- name: Run tests
run: |
echo DRUPAL_BASE_URL=$DRUPAL_BASE_URL;
echo DRUPAL_USERNAME=$DRUPAL_USERNAME;
echo DRUPAL_PASSWORD=$DRUPAL_PASSWORD;
echo DRUPAL_CLIENT_ID=$DRUPAL_CLIENT_ID;
echo DRUPAL_CLIENT_SECRET=$DRUPAL_CLIENT_SECRET;
yarn test packages/next-drupal
env:
DRUPAL_BASE_URL: ${{ secrets.DRUPAL_BASE_URL }}
DRUPAL_USERNAME: ${{ secrets.DRUPAL_USERNAME }}
DRUPAL_PASSWORD: ${{ secrets.DRUPAL_PASSWORD }}
DRUPAL_CLIENT_ID: ${{ secrets.DRUPAL_CLIENT_ID }}
DRUPAL_CLIENT_SECRET: ${{ secrets.DRUPAL_CLIENT_SECRET }}