Skip to content

Update Deps

Update Deps #2

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
jobs:
test:
runs-on: ubuntu-latest
if: github.event.pull_request.draft == false
timeout-minutes: 60
steps:
- uses: actions/checkout@v3
with:
ref: ${{github.event.pull_request.head.sha || github.sha}}
- uses: actions/setup-node@v3
with:
node-version: 18
registry-url: https://registry.npmjs.org/
- name: NPM Install
run: npm install
- name: Lint
run: npm run lint