Dependency: bump @types/node from 18.19.33 to 22.7.7 in /StreamAwesome #486
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: Build StreamAwesome | |
on: | |
workflow_dispatch: | |
push: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
build: | |
if: github.actor == 'sebinside' || github.actor == 'dependabot[bot]' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v3 | |
- name: Clone Font Awesome Overwrites ✌️ | |
uses: actions/checkout@v2 | |
with: | |
repository: sebinside/StreamAwesome-Overwrites | |
persist-credentials: false | |
path: StreamAwesome/fonts | |
ref: 'main' | |
token: ${{ secrets.TOKEN }} | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "18" | |
- name: Install and Build 🔧 | |
working-directory: StreamAwesome | |
run: | | |
yarn install | |
yarn run build |