Skip to content

Bump @babel/cli from 7.22.9 to 7.22.10 #412

Bump @babel/cli from 7.22.9 to 7.22.10

Bump @babel/cli from 7.22.9 to 7.22.10 #412

Workflow file for this run

on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: lts/*
cache: npm
- run: npm ci
- run: npm run test
- run: npm run build
release:
needs: test
runs-on: ubuntu-latest
if: ${{ github.ref == 'refs/heads/main' }}
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: lts/*
cache: npm
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: npm run build
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@a1ea191d508feb8485aceba848389d49f80ca2dc
with:
branch: gh-pages
folder: examples
- name: Establish version
run: |
LOCAL=$(node -p "require('./package.json').version")
echo "::set-output name=local::${LOCAL}"
echo "::set-output name=remote::$(npm view paste-html-to-govspeak version)"
if git ls-remote --tags --exit-code origin ${LOCAL}; then
echo "::set-output name=tagged::yes"
fi
id: version
- name: Tag version
if: ${{ steps.version.outputs.tagged != 'yes' }}
run: git tag ${{ steps.version.outputs.local }} && git push --tags
- name: Release to NPM
if: ${{ steps.version.outputs.local != steps.version.outputs.remote }}
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.ALPHAGOV_NPM_AUTOMATION_TOKEN }}