Skip to content

GitHub Actions Manually #1

GitHub Actions Manually

GitHub Actions Manually #1

name: GitHub Actions Manually
on: [workflow_dispatch]
jobs:
e2e-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install node
uses: actions/setup-node@v2
with:
node-version: '18'
- name: Install dependencies
run: npm install
- name: Run Linter
run: npm run lint
- name: Run tests
run: npm test