Skip to content

Update dependency cheerio to v1.0.0 #491

Update dependency cheerio to v1.0.0

Update dependency cheerio to v1.0.0 #491

# IMPORTANT NOTE/WARNING!
# Do not make changes to this file, your changes will be overwritten.
#
# This file is automagically generated from:
# - .github/templates/pull_request.yml.erb
# - Templates contained in the smartlyio/github-actions-templates repository
#
# This file can be updated by editing the template file, and running `devbox render workflows`
name: "Pull Request"
on:
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4
- name: Set Node.js 16.x
uses: actions/setup-node@v4
with:
node-version: 16.x
- name: "Install"
run: |
npm ci
- name: "Prettier"
run: |
npm run format-check
- name: "Lint"
run: |
npm run lint
- name: "Test"
run: |
npm run test
- name: "build"
run: |
npm run build
npm run package
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4
- name: Set Node.js 16.x
uses: actions/setup-node@v4
with:
node-version: 16.x
- name: "Build action for test"
run: |
npm ci
npm run all
git clean -fXd
- uses: ./
id: bundle
with:
path: './__tests__/fixtures/jquery.html'
- run: |
if [ "$EXPECTED_BUNDLE_SIZE" -gt "$ACTUAL_BUNDLE_SIZE" ]; then
echo "Actual bundle size $ACTUAL_BUNDLE_SIZE does not match expeced bundle size $EXPECTED_BUNDLE_SIZE"
exit 1
fi
env:
ACTUAL_BUNDLE_SIZE: ${{ steps.bundle.outputs.size }}
EXPECTED_BUNDLE_SIZE: '89501'
release:
runs-on: ubuntu-22.04
name: "Build and release action"
needs: [build, test]
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4
with:
fetch-depth: 0
persist-credentials: true
- name: Configure git
uses: smartlyio/github-actions@git-init-userinfo-v1
- name: Release flow
uses: smartlyio/github-actions@release-action-node-v1
with:
dry_run: true
token: "${{ secrets.GITHUB_TOKEN }}"