build(deps): bump express from 4.19.2 to 4.21.2 #66
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: Aonic UI PR Check | |
# Controls when the action will run. | |
on: | |
# Triggers the workflow on pull request events but only for the main branch | |
pull_request: | |
branches: [main] | |
# Allows you to run this workflow manually from the Actions tab | |
#workflow_dispatch: | |
concurrency: ${{ github.workflow }}-${{ github.ref }} | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "test" | |
test: | |
name: PR Check | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- name: Checkout Repo 🛎️ | |
uses: actions/checkout@v3 | |
- name: Setup Node.js 18.x ⚙️ | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install Dependencies 🥁 | |
run: yarn | |
- name: Lint ✅ | |
run: yarn lint | |
- name: Test 🧪 | |
run: yarn test | |
- name: Build Library 🏗 | |
run: yarn build |