Escape quotes #2478
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: Test Build and Report | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '19.2.0' | |
cache: 'npm' | |
- name: 🔧 - Install | |
run: | | |
cp config.yml.example config.yml | |
npm i -g [email protected] | |
npm ci | |
- name: 🧪 | 🏗 - Test and Build | |
run: | | |
npm run deploy:production | |
- name: 📈 - Create Reports | |
run: | | |
npm run report | |
env: | |
LHCI_GITHUB_APP_TOKEN: ${{ secrets.LHCI_GITHUB_APP_TOKEN }} | |
- name: 💾 Archive reports | |
uses: actions/upload-artifact@v4 | |
with: | |
name: reports | |
path: | | |
reports/ | |
.lighthouseci/ | |
- name: 🧥 - Coveralls | |
uses: coverallsapp/github-action@master | |
continue-on-error: true | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
path-to-lcov: './reports/jest-coverage/lcov.info' | |
- name: Slack Notification | |
uses: rtCamp/action-slack-notify@v2 | |
continue-on-error: true | |
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/dev' | |
env: | |
SLACK_COLOR: "${{ job.status == 'success' && 'good' || 'danger' }}" | |
SLACK_USERNAME: 'Github Actions' | |
SLACK_ICON_EMOJI: ':octocat:' | |
SLACK_TITLE: 'CI results in GitHub Actions' | |
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} | |
SLACK_CHANNEL: '#interpro7' | |
MSG_MINIMAL: Actions URL |