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
8 changes: 4 additions & 4 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Use Node.js 20
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 20.x
node-version: 20
- name: Get Timestamp
id: timestamp
run: |
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
name: third-stats-nightly
path: ${{ steps.file.outputs.name }}
- name: Push add-on to CDN
uses: burnett01/rsync-deployments@5.2
uses: burnett01/rsync-deployments@7.0.2
with:
switches: -avzr --delete
path: ${{ steps.file.outputs.name }}
Expand Down
19 changes: 19 additions & 0 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# This workflow will make sure the code is linted and valid

name: Validate

on:
push:
branches:
- '**'
- '!main'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
oxlint:
name: Lint JS
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npx --yes oxlint@1.9.0 --deny-warnings # change to the latest release
Loading
Loading