ci: remove bs3-related workflow; do not install grunt

This commit is contained in:
Jennifer Richards 2022-03-25 12:16:23 -03:00
parent c0c8771370
commit 7c6fa167f1
No known key found for this signature in database
GPG key ID: 26801E4DC0928410
2 changed files with 0 additions and 49 deletions

View file

@ -1,46 +0,0 @@
name: Publish BS3
on:
push:
branches: [ main ]
paths: [ bootstrap/** ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js 16.x
uses: actions/setup-node@v3.0.0
with:
node-version: 16.x
registry-url: https://registry.npmjs.org/
- name: Set package.json version
uses: HarmvZ/set-package-json-version-action@v0.1.2
with:
version: 1.0.${{ github.run_number }}
path: ./bootstrap
- name: Build Release
working-directory: bootstrap
run: |
npm install -g grunt-cli
npm ci
grunt dist
- name: Publish to NPM
run: npm publish --access public
working-directory: bootstrap
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
- name: Upload a Build Artifact
uses: actions/upload-artifact@v3.0.0
with:
name: dist
path: bootstrap/dist

View file

@ -110,9 +110,6 @@ RUN echo "LC_ALL=en_US.UTF-8" >> /etc/environment && \
update-locale LC_ALL en_US.UTF-8
ENV LC_ALL en_US.UTF-8
# Install grunt
RUN npm install -g grunt-cli
# Install idnits
ADD https://raw.githubusercontent.com/ietf-tools/idnits-mirror/main/idnits /usr/local/bin/
RUN chmod +rx /usr/local/bin/idnits