mirror of
https://github.com/Mozilla-Actions/sccache-action.git
synced 2026-04-08 17:42:13 +08:00
Bumps the github-actions group with 1 update: [actions/checkout](https://github.com/actions/checkout). Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
99 lines
2.3 KiB
YAML
99 lines
2.3 KiB
YAML
# Copyright 2023 Mozilla Foundation
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
name: CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v6
|
|
with:
|
|
node-version: 18.x
|
|
cache: npm
|
|
|
|
- name: npm install
|
|
run: npm install
|
|
- name: Prettier Format Check
|
|
run: npm run format-check
|
|
- name: ESLint Check
|
|
run: npm run lint
|
|
- name: Build & Test
|
|
run: npm run test
|
|
|
|
test:
|
|
name: Test version
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os:
|
|
- ubuntu-latest
|
|
- windows-latest
|
|
- macos-latest
|
|
version:
|
|
- ""
|
|
- v0.4.0
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
|
|
- name: Set Node.js
|
|
uses: actions/setup-node@v6
|
|
with:
|
|
node-version: 18.x
|
|
cache: npm
|
|
|
|
- name: npm install
|
|
run: npm install
|
|
|
|
- name: Run sccache-cache
|
|
uses: ./
|
|
with:
|
|
version: ${{ matrix.version }}
|
|
|
|
- name: Run sccache for check
|
|
shell: bash
|
|
run: ${SCCACHE_PATH} --start-server
|
|
|
|
test_disable_annotations:
|
|
name: Test disable_annotations version
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
|
|
- name: Set Node.js
|
|
uses: actions/setup-node@v6
|
|
with:
|
|
node-version: 18.x
|
|
cache: npm
|
|
|
|
- name: npm install
|
|
run: npm install
|
|
|
|
- name: Run sccache-cache
|
|
uses: ./
|
|
with:
|
|
disable_annotations: true
|
|
|
|
- name: Run sccache for check
|
|
shell: bash
|
|
run: ${SCCACHE_PATH} --start-server
|