-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (33 loc) · 1005 Bytes
/
lint.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Copyright (C) Damien Dart, <[email protected]>.
# This file is distributed under the MIT licence. For more information,
# please refer to the accompanying "LICENCE" file.
---
name: 'Lint Project'
on:
push:
branches:
- 'master'
jobs:
lint:
name: 'Lint project'
runs-on: 'ubuntu-20.04'
steps:
- name: 'Check out repository'
uses: 'actions/checkout@v3'
- name: 'Set up Node environment'
uses: 'actions/setup-node@v3'
with:
node-version: '20'
- name: 'Set up PHP environment'
uses: 'shivammathur/setup-php@v2'
with:
php-version: '8.2'
- name: 'Install Task'
run: 'curl -sL https://taskfile.dev/install.sh | sh'
- name: 'Set up SSH gubbins'
run: |
mkdir ~/.ssh
echo "${{ secrets.ASSETS_KEY }}" > ~/.ssh/id_rsa
chmod 600 ~/.ssh/id_rsa
- name: 'Ensure project builds and run all linting-related tasks'
run: './bin/task ci'