Skip to content

implement 11.11 Automatic deployments #6

implement 11.11 Automatic deployments

implement 11.11 Automatic deployments #6

Workflow file for this run

name: Deployment pipeline
on:
push:
branches:
- main
jobs:
simple_deployment_pipeline:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm install
- name: Check style
run: npm run eslint
- name: Build
run: npm run build
- name: Test
run: npm run test