mirror of
https://github.com/denysdovhan/wtfjs.git
synced 2026-03-13 08:42:20 +08:00
28 lines
527 B
YAML
28 lines
527 B
YAML
name: Validate
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
jobs:
|
|
validate:
|
|
name: Validate
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: 🛑 Cancel Previous Runs
|
|
uses: styfle/cancel-workflow-action@0.9.1
|
|
|
|
- name: ⬇️ Checkout Repo
|
|
uses: actions/checkout@v3
|
|
|
|
- name: ⬢ Setup Node.js
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: "*"
|
|
cache: npm
|
|
|
|
- name: 📦 Install Packages
|
|
run: npm ci
|
|
|
|
- name: 💅 Check formatting
|
|
run: npm test
|