Skip to content

Bump next from 12.1.0 to 13.5.1 #203

Bump next from 12.1.0 to 13.5.1

Bump next from 12.1.0 to 13.5.1 #203

Workflow file for this run

name: CI
on: [pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run Linter
run: |
npm ci
npm run lint
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Build Source Code
run: |
npm ci
npm run build
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Test Code
run: |
npm ci
npm run test