Skip to content

feature(slides): draft 07-LIFECYCLE #22

feature(slides): draft 07-LIFECYCLE

feature(slides): draft 07-LIFECYCLE #22

Workflow file for this run

name: TP CI Action
on: [push]
jobs:
build-and-run-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
- name: Install last version of npm
run: npm install -g npm@latest
- name: Install dependencies
run: npm install ci
- name: Run lint
run: npm run lint:ci
- name: Run build
run: npm run build:ci
- name: Run tests
run: npm run test:ci