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

26 lines
456 B
YAML
Raw Normal View History

2022-02-19 16:05:21 +01:00
name: 'Test'
on:
push:
branches: [develop]
2022-02-19 16:05:21 +01:00
pull_request:
branches: [master, develop]
jobs:
test:
runs-on: 'ubuntu-latest'
steps:
- uses: 'actions/checkout@v3.5.3'
2022-02-19 16:05:21 +01:00
- name: 'Setup Node.js'
uses: 'actions/setup-node@v3.6.0'
2022-02-19 16:05:21 +01:00
with:
node-version: 'lts/*'
cache: 'npm'
- name: 'Install dependencies'
run: 'npm clean-install'
2022-02-19 16:05:21 +01:00
- name: 'Test'
run: 'npm run test'