Skip to content
This repository has been archived by the owner on May 26, 2024. It is now read-only.

Update for archiving #42

Update for archiving

Update for archiving #42

Workflow file for this run

name: CI/CD
on: push
jobs:
ci:
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
matrix:
node-version: [lts/*]
env:
CI: true
steps:
- name: Checkout ${{ github.sha }}
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
registry-url: https://registry.npmjs.org/
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint --if-present
- name: Build
run: npm run build --if-present
- name: Test
run: npm run test --if-present
# - name: "Deploy"
# if: github.ref == 'refs/heads/master' && matrix.node-version == 'lts/*'
# run: npm run deploy:prod
# env:
# VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }}