markdownlint-rule-relative-.../.github/workflows/test.yml

26 lines
456 B
YAML
Raw Normal View History

name: "Test"
2023-01-02 15:23:16 +01:00
on:
push:
branches: [develop]
pull_request:
branches: [main, develop]
2023-01-02 15:23:16 +01:00
jobs:
test:
runs-on: "ubuntu-latest"
2023-01-02 15:23:16 +01:00
steps:
- uses: "actions/checkout@v4.1.7"
2023-01-02 15:23:16 +01:00
- name: "Setup Node.js"
uses: "actions/setup-node@v4.0.3"
2023-01-02 15:23:16 +01:00
with:
node-version: "22.x"
cache: "npm"
2023-01-02 15:23:16 +01:00
- name: "Install dependencies"
run: "npm clean-install"
2023-01-02 15:23:16 +01:00
- name: "Test"
run: "node --run test"