1
1
mirror of https://github.com/theoludwig/eslint-config-conventions.git synced 2024-09-20 01:35:53 +02:00
eslint-config-conventions/.github/workflows/test.yml

26 lines
456 B
YAML
Raw Normal View History

name: "Test"
2022-02-19 16:05:21 +01:00
on:
push:
branches: [develop]
2022-02-19 16:05:21 +01:00
pull_request:
2024-02-16 20:04:49 +01:00
branches: [main, develop]
2022-02-19 16:05:21 +01:00
jobs:
test:
runs-on: "ubuntu-latest"
2022-02-19 16:05:21 +01:00
steps:
2024-07-10 12:42:53 +02:00
- uses: "actions/checkout@v4.1.7"
2022-02-19 16:05:21 +01:00
- name: "Setup Node.js"
2024-07-10 12:42:53 +02:00
uses: "actions/setup-node@v4.0.3"
2022-02-19 16:05:21 +01:00
with:
2024-07-25 14:01:48 +02:00
node-version: "22.x"
cache: "npm"
2022-02-19 16:05:21 +01:00
- name: "Install dependencies"
run: "npm clean-install"
2022-02-19 16:05:21 +01:00
- name: "Test"
run: "node --run test"