mirror of
https://github.com/bahdotsh/wrkflw.git
synced 2026-02-24 20:09:42 +01:00
21 lines
389 B
YAML
21 lines
389 B
YAML
|
|
name: Basic Workflow
|
||
|
|
|
||
|
|
on:
|
||
|
|
push:
|
||
|
|
branches: [main]
|
||
|
|
pull_request:
|
||
|
|
branches: [main]
|
||
|
|
|
||
|
|
jobs:
|
||
|
|
build:
|
||
|
|
runs-on: ubuntu-latest
|
||
|
|
steps:
|
||
|
|
- uses: actions/checkout@v3
|
||
|
|
- name: Set up Node.js
|
||
|
|
uses: actions/setup-node@v3
|
||
|
|
with:
|
||
|
|
node-version: '16'
|
||
|
|
- name: Install dependencies
|
||
|
|
run: npm ci
|
||
|
|
- name: Run tests
|
||
|
|
run: npm test
|