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
Divlo 61679195ee
build(deps): update latest
BREAKING CHANGE: peerDependencies: `eslint-plugin-import@^2.26.0`, `eslint-plugin-unicorn@^42.0.0`
2022-04-06 19:14:13 +02:00

26 lines
435 B
YAML

name: 'Test'
on:
push:
branches: [develop]
pull_request:
branches: [master, develop]
jobs:
test:
runs-on: 'ubuntu-latest'
steps:
- uses: 'actions/checkout@v3.0.0'
- name: 'Use Node.js'
uses: 'actions/setup-node@v3.1.0'
with:
node-version: 'lts/*'
cache: 'npm'
- name: 'Install'
run: 'npm install'
- name: 'Test'
run: 'npm run test'