We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There's no tests run on this repository to prevent PRs being merged.
So we should put some tests in and ensure they are run before on PRs to master and on releases of the NPM package to GitHub packages
Will probably look like this action I asked Copilot to make
name: Node.js CI on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: runs-on: ubuntu-latest strategy: matrix: node-version: [14.x, 16.x] steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v2 with: node-version: ${{ matrix.node-version }} - run: npm install - run: npm test
The text was updated successfully, but these errors were encountered:
No branches or pull requests
There's no tests run on this repository to prevent PRs being merged.
So we should put some tests in and ensure they are run before on PRs to master and on releases of the NPM package to GitHub packages
Will probably look like this action I asked Copilot to make
The text was updated successfully, but these errors were encountered: