Bump sass from 1.63.6 to 1.64.2 #7454
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "PR checks" | |
on: | |
pull_request: | |
branches: [ 'master', 'stable-*', 'feature/*' ] | |
jobs: | |
check_commit: | |
runs-on: ubuntu-latest | |
if: ${{ github.base_ref == 'master' }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.after }} # for PR avoids checking out merge commit | |
fetch-depth: 0 # include all history | |
- name: Run script to validate commits for both pull request and a push | |
env: | |
GITHUB_PR_COMMITS_URL: ${{ github.event.pull_request.commits_url }} | |
GITHUB_USER: ${{ github.event.pull_request.user.login }} | |
START_COMMIT: ${{ github.event.before }} | |
END_COMMIT: ${{ github.event.after }} | |
run: | | |
curl https://raw.githubusercontent.com/ansible/galaxy_ng/master/.ci/scripts/validate_commit_message_custom.py | python | |
pr-checks: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout ansible-hub-ui (${{ github.ref }})" | |
uses: actions/checkout@v3 | |
- name: "Install node 16" | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
cache: 'npm' | |
- name: "Checks" | |
run: | | |
# fail if npm install had to change package-lock.json | |
npm install | |
git diff --exit-code package-lock.json | |
# same in test/ | |
pushd test/ | |
npm install | |
git diff --exit-code package-lock.json | |
popd | |
# dependencies | |
npm run lint-setup | |
# run linters | |
npm run lint | |
# uses `this` but not `class` | |
sudo apt install -y ripgrep | |
rg '\bclass\b' src/ | cut -d: -f1 | sort -u > src.class | |
rg '\bthis[\.,)\]}]\b' src/ | cut -d: -f1 | sort -u > src.this | |
if [ `comm -13 src.class src.this | wc -l` -ne 0 ]; then | |
echo | |
echo "Files using this but not class:" | |
echo | |
comm -13 src.class src.this | |
echo | |
rg '\bthis[\.,)\]}]\b' `comm -13 src.class src.this` | |
echo | |
exit 1 | |
fi | |
merge-commits: | |
runs-on: ubuntu-latest | |
steps: | |
# need to checkout out head, the merge commit won't have any merges in history | |
# also need more than 1 commit, assuming no PR will have more than 128 | |
- name: "Checkout ansible-hub-ui HEAD" | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 128 | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: "Ensure no merge commits" | |
run: | | |
# fail on merge commits in the PR | |
# since squash&merge doesn't create merge commits, | |
# and the last non-squash merges were in Jul 2019, | |
# we can just look for any merge commits since 2020 | |
count=`git log --min-parents=2 --since 2020-01-01 | tee /dev/stderr | wc -l` | |
[ "$count" = 0 ] | |
webpack-config: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout ansible-hub-ui (${{ github.base_ref }})" | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.base_ref }} | |
path: 'base' | |
- name: "Checkout ansible-hub-ui (${{ github.ref }})" | |
uses: actions/checkout@v3 | |
with: | |
path: 'pr' | |
- name: "Install node 16" | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
cache: 'npm' | |
cache-dependency-path: | | |
base/package-lock.json | |
pr/package-lock.json | |
- name: "Diff configs" | |
run: | | |
mkdir ~/webpack-config/ | |
for version in base pr; do | |
mkdir ~/webpack-config/$version/ | |
pushd $version/config/ | |
npm install | |
for file in *.js; do | |
# FIXME: that's what TARGET_ENVIRONMENT is for | |
NODE_ENV= | |
if grep -q prod <<< "$file"; then | |
NODE_ENV=production | |
fi | |
export NODE_ENV | |
# eliminate differences caused by branch name based logic in f-c-config | |
export BRANCH="${{ github.base_ref }}" | |
node -e 'console.log(JSON.stringify(require("./'"$file"'"), null, 2))' | | |
sed -e 's/\/home\/.*\/\(base\|pr\)\//\/DIR\//g' \ | |
-e 's/"UI_COMMIT_HASH": ".*"/"UI_COMMIT_HASH": "HASH"/' | | |
perl -ne 'print unless /^[0-9a-f]{64,64}$/d' | | |
grep -v '^Current branch:' | | |
grep -v '^Waiting for ' | | |
grep -v '^Root folder:' > ~/webpack-config/"$version"/"$file".json | |
done | |
popd | |
done | |
diff -Naur ~/webpack-config/{base,pr} |