Cleanup sed version setting (#2075) #782
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
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
name: master publishes | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
################################################################################ | |
# Extension package and artifact on master | |
#### | |
extension-build: | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm install | |
working-directory: report-react | |
- run: npm install | |
working-directory: accessibility-checker-extension | |
- run: npm install | |
working-directory: accessibility-checker-extension/test | |
- run: npm install | |
working-directory: rule-server | |
- run: npm run build | |
working-directory: rule-server | |
- run: sed -i'.old' -e "s/[\"|']use strict[\"|']//g" ./exceljs.js | |
working-directory: accessibility-checker-extension/node_modules/exceljs/dist | |
- run: sed -i'.old' -e "s/[\"|']use strict[\"|']//g" ./exceljs.min.js | |
working-directory: accessibility-checker-extension/node_modules/exceljs/dist | |
- run: cp -f ./manifest_Chrome.json ./src/manifest.json | |
working-directory: accessibility-checker-extension | |
- run: npm run package:browser | |
working-directory: accessibility-checker-extension | |
- name: Upload packed extension | |
uses: actions/upload-artifact@v4 | |
with: | |
name: accessibility-checker-extension for Chrome | |
path: accessibility-checker-extension/package/accessibility-checker-extension.zip | |
- run: cp -f ./manifest_Firefox.json ./src/manifest.json | |
working-directory: accessibility-checker-extension | |
- run: npm run package:browser | |
working-directory: accessibility-checker-extension | |
- name: Upload packed extension | |
uses: actions/upload-artifact@v4 | |
with: | |
name: accessibility-checker-extension for Firefox | |
path: accessibility-checker-extension/package/accessibility-checker-extension.zip | |
act-results: | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm install | |
working-directory: accessibility-checker-engine | |
- run: npm install | |
working-directory: report-react | |
- run: npm run build:all | |
working-directory: accessibility-checker-engine | |
- run: npm install | |
working-directory: rule-server | |
- run: npm run build | |
working-directory: rule-server | |
- run: node main.js & | |
working-directory: rule-server/dist | |
- run: sleep 10 | |
working-directory: rule-server/dist | |
- run: npm install | |
working-directory: accessibility-checker | |
- run: npm run build | |
working-directory: accessibility-checker | |
- run: npm test | |
working-directory: accessibility-checker/test-act-w3 | |
- name: Upload packed extension | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ACT Text Results | |
path: accessibility-checker/test-act-w3/act-report-v2.txt | |
rule-deploy: | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm install | |
working-directory: rule-server | |
- run: npm run build | |
working-directory: rule-server | |
- run: gitactions/publish/rules.sh | |
env: | |
BLUEMIX_USERID: apikey | |
BLUEMIX_PASS: ${{ secrets.BLUEMIX_PASS }} | |
CLOUD_PWD: ${{ secrets.CLOUD_PWD }} | |
TRAVIS_BRANCH: master |