Skip to content

Bump actions/checkout from 2 to 4 #7

Bump actions/checkout from 2 to 4

Bump actions/checkout from 2 to 4 #7

Workflow file for this run

name: Pull Request Validation
on:
pull_request:
branches: [ "main" ]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 18
registry-url: https://registry.npmjs.org/
- name: Install dependencies
run: npm install
- name: Lint
run: npm run lint
- name: Test
run: npm run test
- name: Build
run: npm run build