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:
branches: [master, develop]
jobs:
test:
runs-on: "ubuntu-latest"
2022-02-19 16:05:21 +01:00
steps:
- uses: "actions/checkout@v4.1.1"
2022-02-19 16:05:21 +01:00
- name: "Setup Node.js"
uses: "actions/setup-node@v4.0.1"
2022-02-19 16:05:21 +01:00
with:
node-version: "lts/*"
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: "npm run test"