Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 0 additions & 37 deletions .github/workflows/codeql.yml

This file was deleted.

7 changes: 5 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,17 @@ on:
branches:
- master

permissions:
contents: read

jobs:
build:
name: Build
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Docker build
run: docker build . --tag arma-server-web-admin
Expand Down
30 changes: 17 additions & 13 deletions .github/workflows/node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ on:
branches:
- master

permissions:
contents: read

jobs:
build:
name: Build
Expand All @@ -16,33 +19,34 @@ jobs:
strategy:
matrix:
node-version:
- 16.x
- 14.x
- 12.x
- 10.x
- 8.x
- 6.x
- 4.x
- 24
- 22
- 20
- 18
- 16
- 14
- 12
- 10
os:
- ubuntu-20.04
- windows-2019
- ubuntu-22.04
- windows-2022

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

- name: Get npm cache directory
id: npm-cache
run: |
echo "::set-output name=dir::$(npm config get cache)"

- name: Cache npm dependencies
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ${{ steps.npm-cache.outputs.dir }}
key: ${{ matrix.os }}-node-${{ matrix.node-version }}-${{ hashFiles('**/package.json') }}
Expand Down
Loading