Skip to content

build(deps-dev): Bump js-yaml from 4.1.0 to 4.1.1 #41

build(deps-dev): Bump js-yaml from 4.1.0 to 4.1.1

build(deps-dev): Bump js-yaml from 4.1.0 to 4.1.1 #41

Workflow file for this run

name: Build and Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "20"
- name: Cache Node Modules
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install Dependencies
run: npm install
- name: Run ESLint
run: npm run lint
- name: Type Check
run: npm run type-check
- name: Build the Project
run: npm run build
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}