deps: bump the npm_and_yarn group with 5 updates #289
Workflow file for this run
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: Pull Request Events | |
on: pull_request | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test-functional: | |
name: Functional tests | |
runs-on: ubuntu-latest | |
environment: | |
name: dev | |
steps: | |
- name: ⬇️ Set up code | |
uses: actions/checkout@v4 | |
- name: 🧙 Run Cypress tests | |
uses: cypress-io/github-action@v6 | |
env: | |
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
start: npm start | |
record: true | |
browser: chrome | |
wait-on: 'http://localhost:5173' | |
- uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: cypress-screenshots | |
path: cypress/screenshots | |
test-unit: | |
name: Unit tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⬇️ Set up code | |
uses: actions/checkout@v4 | |
- name: ⎔ Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
cache: npm | |
- name: 📥 Download dependencies | |
run: npm ci | |
- name: 🧶 Lint | |
run: npm run lint | |
- name: 🧪 Run tests | |
run: npm test | |
deploy-preview: | |
name: Firebase preview | |
runs-on: ubuntu-latest | |
needs: [test-unit, test-functional] | |
if: ${{ github.event.sender.type == 'User' }} | |
environment: | |
name: dev | |
permissions: | |
id-token: write | |
pull-requests: write | |
steps: | |
- name: 🚀 Deploy | |
uses: agrc/firebase-website-deploy-composite-action@v1 | |
with: | |
identity-provider: ${{ secrets.IDENTITY_PROVIDER }} | |
service-account-email: ${{ secrets.SERVICE_ACCOUNT_EMAIL }} | |
project-id: ${{ secrets.PROJECT_ID }} | |
preview: yes | |
build-command: npm run build:stage | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
rebuild-docs: | |
name: Rebuild config docs | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⬇️ Checkout Code | |
uses: actions/checkout@v4 | |
- name: ⎔ Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
cache: npm | |
- name: 📥 Download dependencies | |
run: npm ci | |
- name: 📚 Update Config Docs | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
gh pr checkout ${{ github.event.pull_request.number }} | |
npm run update-config-docs | |
if [[ `git status --porcelain` ]]; then | |
git config --global user.email "${{ secrets.UGRC_RELEASE_BOT_EMAIL }}" | |
git config --global user.name "${{ secrets.UGRC_RELEASE_BOT_NAME }}" | |
git add docs | |
git commit -m "docs: update config docs" | |
git push | |
fi |