Skip to content

Bump actions/checkout from 5.0.0 to 5.0.1 (#43) #79

Bump actions/checkout from 5.0.0 to 5.0.1 (#43)

Bump actions/checkout from 5.0.0 to 5.0.1 (#43) #79

Workflow file for this run

name: Default Build & Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm install
- name: Run lint
run: npm run lint
- name: Run build
run: npm run build