From 305547c192f10524992a4d6973e2ac3da1941e74 Mon Sep 17 00:00:00 2001 From: Lukas Neubert Date: Tue, 27 Jul 2021 19:17:40 +0200 Subject: [PATCH] ci: use most recent node lts --- .github/workflows/lint.yml | 8 +++++--- .gitignore | 1 + 2 files changed, 6 insertions(+), 3 deletions(-) create mode 100644 .gitignore diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 17a3fb7..4ed21f7 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -1,16 +1,18 @@ name: Lint + on: push: branches: [master] pull_request: types: [opened, synchronize] + jobs: test: name: Run awesome linter runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 - - uses: actions/setup-node@v1 + - uses: actions/checkout@v2 + - uses: actions/setup-node@v2 with: - node-version: 12.13.1 + node-version: 'lts/*' - run: npx awesome-lint README.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4d67604 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.code-workspace